| 49 | } |
| 50 | |
| 51 | Value StringValue(lua_State* L, int idx, Allocator& allocator) { |
| 52 | size_t len; |
| 53 | const char* s = lua_tolstring(L, idx, &len); |
| 54 | return Value(s, static_cast<SizeType>(len), allocator); |
| 55 | } |
| 56 | |
| 57 | Value TableValue(lua_State* L, int idx, int depth, Allocator& allocator) |
| 58 | { |
no test coverage detected