Resolve the field in the metatable and return
| 427 | |
| 428 | // Resolve the field in the metatable and return |
| 429 | static int get_metafield(lua_State *state) |
| 430 | { |
| 431 | lua_rawget(state, UPVAL_METATABLE); |
| 432 | return 1; |
| 433 | } |
| 434 | |
| 435 | static void *find_field(lua_State *state, int index, const char *mode) |
| 436 | { |
no test coverage detected