3
votes
2answers
76 views
Can function argument have hint in cfscript (CF9)?
Can function argument have hint in cfscript (CF9)?
CFML style:
<cffunction name="myFunc" output="false" returntype="void">
<cfargument name="arg1" type="arg1" default= …
2
votes
1answer
100 views
Safe to call underlying java method on String in ColdFusion?
Adobe ColdFusion is built on Java. Almost all simple variables in CFML/CFSCRIPT are java.lang.String until the operation needs it to be of a certain type.
I've always want to use …
3
votes
3answers
182 views
Is output=false by default for cfscript function in CFC?
I thought CFC's methods defined as functions in cfscript are output=false by default, but when I open the CFC in cfcexplorer.cfc (browser directly to the CFC), it says Output: enab …
4
votes
3answers
140 views
lint for ColdFusion
Is there an equivalent of jslint for ColdFusion?
1
vote
1answer
339 views
in ColdFusion 8, can you declare a function as private using cfscript?
Normally you create a function using cfscript like:
<cfscript>
function foo() { return "bar"; }
</cfscript>
Is there a way to declare this as a private function, …
