| 537 | } |
| 538 | |
| 539 | static int lua_abs_index(lua_State *L, int i) |
| 540 | { |
| 541 | return i > 0 || i <= LUA_REGISTRYINDEX |
| 542 | ? i |
| 543 | : lua_gettop(L) + i + 1 |
| 544 | ; |
| 545 | } |
| 546 | |
| 547 | static void lua_save_data_write_indent(StringStream &sjson, u32 depth) |
| 548 | { |
no test coverage detected