We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Scanning this should not give such error
<cfcomponent displayname="mycomponent"> <cffunction name="myfunction" returntype="void"> <cfargument name="myvariable" type="string" required="true"> <cfscript> var mystructure = {myvariable = arguments.myvariable}; </cfscript> </cffunction> </cfcomponent>
Error goes away if I write either:
<cfcomponent displayname="mycomponent"> <cffunction name="myfunction" returntype="void"> <cfargument name="myvariable" type="string" required="true"> <cfscript> var mystructure = {anothername = arguments.myvariable}; </cfscript> </cffunction> </cfcomponent>
or
<cfcomponent displayname="mycomponent"> <cffunction name="myfunction" returntype="void"> <cfargument name="myvariable" type="string" required="true"> <cfscript> var mystructure = {myvariable = ''}; </cfscript> </cffunction> </cfcomponent>
Keys of implicit structs should be between quotes, but as far as I know it's not required.
The text was updated successfully, but these errors were encountered:
#478 fixed
5ced252
fixed in dev branch. Thanks @rcastagno
Sorry, something went wrong.
No branches or pull requests
Scanning this should not give such error
Error goes away if I write either:
or
Keys of implicit structs should be between quotes, but as far as I know it's not required.
The text was updated successfully, but these errors were encountered: