| 1294 | } |
| 1295 | |
| 1296 | static int Lpb_field(lua_State *L) { |
| 1297 | lpb_State *LS = lpb_lstate(L); |
| 1298 | const pb_Type *t = lpb_type(LS, lpb_checkslice(L, 1)); |
| 1299 | return lpb_pushfield(L, t, lpb_field(L, 2, t)); |
| 1300 | } |
| 1301 | |
| 1302 | static int Lpb_enum(lua_State *L) { |
| 1303 | lpb_State *LS = lpb_lstate(L); |
nothing calls this directly
no test coverage detected