diff options
Diffstat (limited to 'src/lobject.js')
-rw-r--r-- | src/lobject.js | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lobject.js b/src/lobject.js index bd65ea8..c2ec123 100644 --- a/src/lobject.js +++ b/src/lobject.js @@ -64,14 +64,6 @@ class TValue { return this.checktag(CT.LUA_TLIGHTUSERDATA); } - ttisobject() { - return this.checktag(CT.LUA_TLIGHTUSERDATA_OBJ); - } - - ttisptr() { - return this.checktag(CT.LUA_TLIGHTUSERDATA_PTR); - } - ttisstring() { return this.checktype(CT.LUA_TSTRING); } |