diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-11-24 15:56:05 +0100 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-11-24 15:56:05 +0100 |
commit | 915d48e596c36117b58c8d530f72abac8ea28e8e (patch) | |
tree | 4248f0f0c146a165886ca05d3904822865f50614 /src/intertyper.js | |
parent | 9c5a0dbdd3a7a1052a58735c654c3cb69dadf140 (diff) |
remove STRING_TABLE in preparation for better system to reduce # of globals
Diffstat (limited to 'src/intertyper.js')
-rw-r--r-- | src/intertyper.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/intertyper.js b/src/intertyper.js index 8e7bb418..1ad51b96 100644 --- a/src/intertyper.js +++ b/src/intertyper.js @@ -74,12 +74,10 @@ 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 = /[@%\w\d\.\" $-]+ = [\w ]+ \[\d+ x i8] c".*/.exec(line); Variables.globals[globalIdent] = { name: globalIdent, alias: !!testAlias, - impl: VAR_EMULATED, - isString : !!testString + impl: VAR_EMULATED }; unparsedGlobals.lines.push(line); } else { |