summaryrefslogtreecommitdiff
path: root/src/defs.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2018-01-11 23:44:38 +1100
committerdaurnimator <quae@daurnimator.com>2018-01-11 23:44:38 +1100
commit970c179a034ad53f6a64f987070e78bf1de5e6fa (patch)
tree7a2b7b055d886f03adb86a4ac9ab46fa5aa4bfd5 /src/defs.js
parenta39f24f204a15cb4587e75b38424952fe444d9d2 (diff)
downloadfengari-970c179a034ad53f6a64f987070e78bf1de5e6fa.tar.gz
fengari-970c179a034ad53f6a64f987070e78bf1de5e6fa.tar.bz2
fengari-970c179a034ad53f6a64f987070e78bf1de5e6fa.zip
Remove defs.CT alias for defs.constant_types
Diffstat (limited to 'src/defs.js')
-rw-r--r--src/defs.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/defs.js b/src/defs.js
index c1720c3..a203db6 100644
--- a/src/defs.js
+++ b/src/defs.js
@@ -61,8 +61,6 @@ constant_types.LUA_TLCL = constant_types.LUA_TFUNCTION | (0 << 4); /* Lua closu
constant_types.LUA_TLCF = constant_types.LUA_TFUNCTION | (1 << 4); /* light C function */
constant_types.LUA_TCCL = constant_types.LUA_TFUNCTION | (2 << 4); /* C closure */
-const CT = constant_types;
-
/*
** Comparison and arithmetic functions
*/
@@ -426,7 +424,6 @@ if (typeof process === "undefined") {
module.exports.LUA_CPATH_DEFAULT = LUA_CPATH_DEFAULT;
}
-module.exports.CT = CT;
module.exports.LUA_AUTHORS = LUA_AUTHORS;
module.exports.LUA_COPYRIGHT = LUA_COPYRIGHT;
module.exports.LUA_HOOKCALL = LUA_HOOKCALL;