You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<cfscript> for (a=1;a lte b;a=a+1) { if (comparenocase(c, d) is 0) { e.f=g; execute(h = i, l = m); } } </cfscript>
The error is
Exception in thread "main" java.lang.StackOverflowError
at cfml.parsing.cfscript.script.CFExpressionStatement.Decompile(CFExpressionStatement.java:17)
at cfml.parsing.cfscript.script.CFCompoundStatement.Decompile(CFCompoundStatement.java:54)
...
...
This version of the test
<cfscript> for (a=1;a lte b;a=a+1) { if (comparenocase(c, d) is 0) { e.f=g; fooexecute(h = i, l = m); } } </cfscript>
runs just fine.
The text was updated successfully, but these errors were encountered:
I've narrowed the problem to this case:
<cfscript> for (a=1;a lte b;a=a+1) { if (comparenocase(c, d) is 0) { e.f=g; execute(h = i, l = m); } } </cfscript>
The error is
Exception in thread "main" java.lang.StackOverflowError
at cfml.parsing.cfscript.script.CFExpressionStatement.Decompile(CFExpressionStatement.java:17)
at cfml.parsing.cfscript.script.CFCompoundStatement.Decompile(CFCompoundStatement.java:54)
...
...
This version of the test
<cfscript> for (a=1;a lte b;a=a+1) { if (comparenocase(c, d) is 0) { e.f=g; fooexecute(h = i, l = m); } } </cfscript>
runs just fine.
The text was updated successfully, but these errors were encountered: