summaryrefslogtreecommitdiff
path: root/src/llimit.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-13 14:37:01 +0100
committerBenoit Giannangeli <giann008@gmail.com>2017-02-13 21:56:55 +0100
commit59e549150996ec4c8a049f893dad9ec95a4677e9 (patch)
tree2a9d72d5b7863a80a7c145adbb3f1a311b8a1fd9 /src/llimit.js
parentab14ee4aa480b21a6e5c6c4d8cdb1823951ed7c3 (diff)
downloadfengari-59e549150996ec4c8a049f893dad9ec95a4677e9.tar.gz
fengari-59e549150996ec4c8a049f893dad9ec95a4677e9.tar.bz2
fengari-59e549150996ec4c8a049f893dad9ec95a4677e9.zip
Better use of module to avoid cyclic dependencies issues
Diffstat (limited to 'src/llimit.js')
-rw-r--r--src/llimit.js8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/llimit.js b/src/llimit.js
index 2cbfbb6..9c02eb0 100644
--- a/src/llimit.js
+++ b/src/llimit.js
@@ -1,8 +1,6 @@
/*jshint esversion: 6 */
"use strict";
-module.exports = {
- LUAI_MAXCCALLS: 200,
- LUA_MAXINTEGER: 2147483647,
- LUA_MININTEGER: -2147483647
-}; \ No newline at end of file
+module.exports.LUAI_MAXCCALLS = 200;
+module.exports.LUA_MAXINTEGER = 2147483647;
+module.exports.LUA_MININTEGER = -2147483647; \ No newline at end of file