aboutsummaryrefslogtreecommitdiff
path: root/src/lualib.js
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-23 08:59:35 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-23 10:40:04 +0100
commit567e12ce3f1ef413afa510cb583d6ac8442a7a4a (patch)
treea1911e7291e917de549bbdd2dead60aa513af87f /src/lualib.js
parent7c459409b078e38da07e2570a77945fdc0f55c2c (diff)
downloadfengari-567e12ce3f1ef413afa510cb583d6ac8442a7a4a.tar.gz
fengari-567e12ce3f1ef413afa510cb583d6ac8442a7a4a.tar.bz2
fengari-567e12ce3f1ef413afa510cb583d6ac8442a7a4a.zip
coroutines
Diffstat (limited to 'src/lualib.js')
-rw-r--r--src/lualib.js23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/lualib.js b/src/lualib.js
index 1eff812..d87cfbc 100644
--- a/src/lualib.js
+++ b/src/lualib.js
@@ -7,5 +7,26 @@ const lua = require('./lua.js');
const LUA_VERSUFFIX = "_" + lua.LUA_VERSION_MAJOR + "_" + lua.LUA_VERSION_MINOR;
+const LUA_COLIBNAME = "coroutine";
+const LUA_TABLIBNAME = "table"
+const LUA_IOLIBNAME = "io"
+const LUA_OSLIBNAME = "os"
+const LUA_STRLIBNAME = "string"
+const LUA_UTF8LIBNAME = "utf8"
+const LUA_BITLIBNAME = "bit32"
+const LUA_MATHLIBNAME = "math"
+const LUA_DBLIBNAME = "debug"
+const LUA_LOADLIBNAME = "package"
-module.exports.LUA_VERSUFFIX = LUA_VERSUFFIX; \ No newline at end of file
+
+module.exports.LUA_BITLIBNAME = LUA_BITLIBNAME;
+module.exports.LUA_COLIBNAME = LUA_COLIBNAME;
+module.exports.LUA_DBLIBNAME = LUA_DBLIBNAME;
+module.exports.LUA_IOLIBNAME = LUA_IOLIBNAME;
+module.exports.LUA_LOADLIBNAME = LUA_LOADLIBNAME;
+module.exports.LUA_MATHLIBNAME = LUA_MATHLIBNAME;
+module.exports.LUA_OSLIBNAME = LUA_OSLIBNAME;
+module.exports.LUA_STRLIBNAME = LUA_STRLIBNAME;
+module.exports.LUA_TABLIBNAME = LUA_TABLIBNAME;
+module.exports.LUA_UTF8LIBNAME = LUA_UTF8LIBNAME;
+module.exports.LUA_VERSUFFIX = LUA_VERSUFFIX; \ No newline at end of file