CF-2018:coldfusion.compiler.ASTliteral cannot be cast to coldfusion.compiler.ASTtagAttribute
We're trying out CF-2018 with an application that uses FrameWork/1 and one of the first thing we have hit is:
coldfusion.compiler.ASTliteral cannot be cast to coldfusion.compiler.ASTtagAttribute
The error occurred in ...\framework\one.cfc: line 1842
Called from ...\framework\one.cfc: line 1869
Called from ...\framework\one.cfc: line 260
Called from ...\framework\one.cfc: line 2967
Called from ...\framework\one.cfc: line 991
1839: private string function normalizeQueryString( any queryString ) {
1840: // if queryString is a struct, massage it into a string
1841: if ( isStruct( queryString ) && structCount( queryString ) ) {
1842: var q = '';
1843: for( var key in queryString ) {
1844: if ( isSimpleValue( queryString[key] ) ) {
I've googled and found no references to "coldfusion ASTliteral ". Help.
