Can function argument have hint in cfscript (CF9)?

CFML style:

<cffunction name="myFunc" output="false" returntype="void">
  <cfargument name="arg1" type="arg1" default="default" hint="my hint">
  ...
</cffunction>

CF9 cfscript style:

public void function myFunc(string arg1='default') {
  ...
}

Where to specify hint of the argument (arg1) above?

link|improve this question

feedback

2 Answers

up vote 20 down vote accepted

The easiest way is to to use JavaDoc notation.

component{

/**
* @hint This is a hint
* @arg1 This is an argument hint
* @arg2 This is another argument hint 
*/
public void function myFunc(string arg1='default', numeric arg2) {
  return TRUE;
}

}

link|improve this answer
This method only attaches the hint to the function, but not to the argument 'arg1'. – Henry Aug 26 '09 at 3:01
I have altered it to show the right syntax. Sorry about that. – Terry Ryan Aug 26 '09 at 15:37
oh I see! Thank you! I can't find this from the documentation. – Henry Aug 26 '09 at 18:06
feedback

I've not played with cf9, but you can do something like this in CF8:

<cffunction name="myFunc" output="false" returntype="void">
  <cfargument name="arg1" type="arg1" default="default" hint="my hint">
  <cfscript>
    //do stuff
  </cfscript>
</cffunction>

Not ideal, but maybe an acceptable comprimise.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.