displaying top 100 results
Tracker Issue Context validation error for cfcase
3707850 CF-4200150 Core Runtime : Parser/Compiler Edward Keighley Context validation error for cfcase Problem Description:
An implicit array inside a tag appears to cause a compiler exception in an unrelated tag, but only if there are enough other variable references within the same script
2902730 CF-4198389 Language : Expressions Edward Keighley Ternary operator doesn't short-circuit with implicit array/struct expressions Steps to Reproduce:
{code:java}
a = 1; b = 1;
x = true ? [a++] : [b++];
writeDump(a);
writeDump(b);
writeDump(var=x, abort=true);
{code}
Actual Result:
a==2