* Metamethod: df.isnull(obj) */
| 1119 | * Metamethod: df.isnull(obj) |
| 1120 | */ |
| 1121 | static int meta_isnull(lua_State *state) |
| 1122 | { |
| 1123 | luaL_checkany(state, 1); |
| 1124 | lua_pushboolean(state, Lua::IsDFNull(state, 1)); |
| 1125 | return 1; |
| 1126 | } |
| 1127 | |
| 1128 | static int meta_nodata(lua_State *state) |
| 1129 | { |
nothing calls this directly
no test coverage detected