not Lua 5.3 */
| 106 | # define lua53_rawgetp lua_rawgetp |
| 107 | #else /* not Lua 5.3 */ |
| 108 | static int lua53_getfield(lua_State *L, int idx, const char *field) |
| 109 | { return lua_getfield(L, idx, field), lua_type(L, -1); } |
| 110 | static int lua53_rawgeti(lua_State *L, int idx, lua_Integer i) |
| 111 | { return lua_rawgeti(L, idx, i), lua_type(L, -1); } |
| 112 | static int lua53_rawgetp(lua_State *L, int idx, const void *p) |
no test coverage detected