cflint / CFLint

Static code analysis for CFML (a linter)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

cflint missing_var script loop not working

edynamics opened this issue · 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