diff options
author | daurnimator <quae@daurnimator.com> | 2017-05-31 13:08:00 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-05-31 13:08:00 +1000 |
commit | 043dfbed7c500ba58d44da808c403575e4b83f38 (patch) | |
tree | 3e34d2264e5552e3a19da77f2d1025de5b1cdc64 /src/lstate.js | |
parent | d0018d43f46d3c32508094a3a3c2e73cc6acf3ff (diff) | |
download | fengari-043dfbed7c500ba58d44da808c403575e4b83f38.tar.gz fengari-043dfbed7c500ba58d44da808c403575e4b83f38.tar.bz2 fengari-043dfbed7c500ba58d44da808c403575e4b83f38.zip |
LUA_NUMTAGS is inside constant_types
Diffstat (limited to 'src/lstate.js')
-rw-r--r-- | src/lstate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lstate.js b/src/lstate.js index 9046adf..6cd906d 100644 --- a/src/lstate.js +++ b/src/lstate.js @@ -12,7 +12,7 @@ const lfunc = require('./lfunc.js'); const ltm = require('./ltm.js'); const CT = defs.constant_types; const TS = defs.thread_status; -const LUA_NUMTAGS = defs.LUA_NUMTAGS; +const LUA_NUMTAGS = CT.LUA_NUMTAGS; const EXTRA_STACK = 5; |