| 1164 | static void lpb_pushtypetable(lua_State *L, lpb_State *LS, const pb_Type *t); |
| 1165 | |
| 1166 | static void lpb_newmsgtable(lua_State *L, const pb_Type *t) |
| 1167 | { lua_createtable(L, 0, t->field_count - t->oneof_field + t->oneof_count*2); } |
| 1168 | |
| 1169 | LUALIB_API const pb_Type *lpb_type(lpb_State *LS, pb_Slice s) { |
| 1170 | const pb_Type *t; |
no test coverage detected