diff options
-rw-r--r-- | src/lauxlib.js | 2 | ||||
-rw-r--r-- | src/lua.js | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/lauxlib.js b/src/lauxlib.js index e94b886..b2ee971 100644 --- a/src/lauxlib.js +++ b/src/lauxlib.js @@ -154,7 +154,7 @@ const luaL_argerror = function(L, arg, extramsg) { lua.lua_getinfo(L, lua.to_luastring("n"), ar); - if (ar.namewhat.toString() === lua.to_luastring("method").toString()) { /* TODO: luastring_eq? */ + if (lua.luastring_eq(ar.namewhat, lua.to_luastring("method"))) { arg--; /* do not count 'self' */ if (arg === 0) /* error is in the self argument itself? */ return luaL_error(L, lua.to_luastring("calling '%s' on bad self (%s)"), ar.name, extramsg); @@ -78,6 +78,7 @@ module.exports.LUA_VERSUFFIX = defs.LUA_VERSUFFIX; module.exports.LUA_YIELD = defs.thread_status.LUA_YIELD; module.exports.lua_Debug = defs.lua_Debug; module.exports.lua_upvalueindex = defs.lua_upvalueindex; +module.exports.luastring_eq = defs.luastring_eq; module.exports.luastring_of = defs.luastring_of; module.exports.to_jsstring = defs.to_jsstring; module.exports.to_luastring = defs.to_luastring; |