Dynamic And Unexpected ColdFusion GetCurrentTemplatePath() Behavior

<cfcomponent
	extends="Base"
	output="false"
	hint="The extending component.">
 
	<cffunction
		name="GetExtenderComponentPath"
		access="public"
		returntype="string"
		output="false"
		hint="Returns the current component's (this) file path.">
 
		<!---
			Return the path of the currently executing
			template (this component).
		--->
		<cfreturn GetCurrentTemplatePath() />
	</cffunction>
 
 
	<!---
		Include the mixin file that defines a function
		for getting the current template path.
	--->
	<cfinclude template="./GetPath.cfm" />
 
</cfcomponent>

For Cut-and-Paste