diff options
author | daurnimator <quae@daurnimator.com> | 2017-04-26 22:57:35 +1000 |
---|---|---|
committer | daurnimator <quae@daurnimator.com> | 2017-04-26 22:57:35 +1000 |
commit | 6d07675c7397e351c8c15ae961f8ad06c3f9d8a6 (patch) | |
tree | 10b201da587b4cd70a22b0a344b6ff05319a4582 /src/defs.js | |
parent | bbddfc24c304d2f519805db62a463695eab89295 (diff) | |
download | fengari-6d07675c7397e351c8c15ae961f8ad06c3f9d8a6.tar.gz fengari-6d07675c7397e351c8c15ae961f8ad06c3f9d8a6.tar.bz2 fengari-6d07675c7397e351c8c15ae961f8ad06c3f9d8a6.zip |
Remove lightuserdata object subtype
Diffstat (limited to 'src/defs.js')
-rw-r--r-- | src/defs.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/defs.js b/src/defs.js index e24f419..fd8038a 100644 --- a/src/defs.js +++ b/src/defs.js @@ -66,9 +66,6 @@ const constant_types = { constant_types.LUA_TSHRSTR = constant_types.LUA_TSTRING | (0 << 4); /* short strings */ constant_types.LUA_TLNGSTR = constant_types.LUA_TSTRING | (1 << 4); /* long strings */ -constant_types.LUA_TLIGHTUSERDATA_PTR = constant_types.LUA_TLIGHTUSERDATA | (0 << 4); /* short strings */ -constant_types.LUA_TLIGHTUSERDATA_OBJ = constant_types.LUA_TLIGHTUSERDATA | (1 << 4); /* long strings */ - constant_types.LUA_TNUMFLT = constant_types.LUA_TNUMBER | (0 << 4); /* float numbers */ constant_types.LUA_TNUMINT = constant_types.LUA_TNUMBER | (1 << 4); /* integer numbers */ |