Question
How to specify function argument type in script-style?
<cffunction name="setPerson">
<cfargument name="person" type="com.Person"/>
</cffunction>
I tried:
function setPerson(com.Person person){}
and it does NOT work either. CF says "You cannot use a variable reference with "." operators in this context"
if this is indeed a bug, pls vote at: http://cfbugs.adobe.com/cfbugreport/flexbugui/cfbugtracker/main.html#bugId=80394
