CFLint
CFLint copied to clipboard
cflint missing_var script loop not working
CFLint-1.5.0-all.jar the loop tag (lucee) within cfscript is not showing missing var In the example "i" and "alpha" is missing a var
<cffunction name="varscope"> <cfset var abc = "a,b,c"> <cfscript> loop list="#abc#" index="i" item="alpha" { dump(alfa) } </cfscript> <cfloop list="#abc#" index="j" item="bet"> <cfdump var="#bet#"/> </cfloop> <cfdump var="...z" abort="1"/> </cffunction>