ColdFusion CALLER Scope Dependent On Invoking Parent, Not Markup Parent

<!--- Import tag libraries. --->
<cfimport taglib="./" prefix="tag" />
 
<!---
	Execute the nested tags. This time, however, unlike our
	last experiment, we are going to let the parent tag
	explicitly call the child tag to see how that works.
--->
<tag:parent2 />
 
 
<!---
	Dump out the local variables scope to see how
	it has been affected by the ColdFusion custom
	tag execution.
--->
<cfdump
	var="#VARIABLES#"
	label="Top Level VARIABLES Scope (post tag execution)"
	/>

For Cut-and-Paste