diff options
author | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-15 09:22:11 +0100 |
---|---|---|
committer | Benoit Giannangeli <benoit.giannangeli@boursorama.fr> | 2017-02-15 17:07:58 +0100 |
commit | c428f1241ebd5194a37c37d9d5376b326b78ee37 (patch) | |
tree | 6e0357f728f525da8e27d73bcbc94ec8ce05c645 /src/lfunc.js | |
parent | f94e2902d6e2e45840c5a63d46c57ddd888b84b8 (diff) | |
download | fengari-c428f1241ebd5194a37c37d9d5376b326b78ee37.tar.gz fengari-c428f1241ebd5194a37c37d9d5376b326b78ee37.tar.bz2 fengari-c428f1241ebd5194a37c37d9d5376b326b78ee37.zip |
Implementing minimal path from main to luaV_execute of user script
Diffstat (limited to 'src/lfunc.js')
-rw-r--r-- | src/lfunc.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lfunc.js b/src/lfunc.js index 1a1597a..f3e11d3 100644 --- a/src/lfunc.js +++ b/src/lfunc.js @@ -91,4 +91,5 @@ const luaF_close = function(L, level) { module.exports.Proto = Proto; module.exports.UpVal = UpVal; module.exports.findupval = findupval; -module.exports.luaF_close = luaF_close;
\ No newline at end of file +module.exports.luaF_close = luaF_close; +module.exports.MAXUPVAL = 255;
\ No newline at end of file |