diff options
Diffstat (limited to 'src/intertyper.js')
-rw-r--r-- | src/intertyper.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index d295a872..ae9794b8 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -83,10 +83,12 @@ function intertyper(data, sidePass, baseLineNums) { var global = /([@%\w\d\.\" ]+) = .*/.exec(line); var globalIdent = toNiceIdent(global[1]); var testAlias = /[@%\w\d\.\" ]+ = alias .*/.exec(line); + var testString = /^[^"]+c\"[^"]+"/.exec(line); Variables.globals[globalIdent] = { name: globalIdent, alias: !!testAlias, - impl: VAR_EMULATED + impl: VAR_EMULATED, + isString : !!testString }; unparsedGlobals.lines.push(line); } else { |