CFLint icon indicating copy to clipboard operation
CFLint copied to clipboard

cflint missing_var script loop not working

Open edynamics opened this issue 2 years ago • 0 comments

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>

image

edynamics avatar Dec 07 '21 11:12 edynamics