| 807 | LuaScriptInterface::~LuaScriptInterface() = default; |
| 808 | |
| 809 | void tpt_lua_pushByteString(lua_State *L, const ByteString &str) |
| 810 | { |
| 811 | lua_pushlstring(L, str.data(), str.size()); |
| 812 | } |
| 813 | |
| 814 | void tpt_lua_pushString(lua_State *L, const String &str) |
| 815 | { |
no test coverage detected