| 413 | } |
| 414 | |
| 415 | static int NodeProxy_index(lua_State *L) |
| 416 | { |
| 417 | InternalNode* n = LuaCheckNodeInternal(L, 1, 0); |
| 418 | (void)n; |
| 419 | |
| 420 | const char* key = luaL_checkstring(L, 2); |
| 421 | return luaL_error(L, "Illegal operation, try %s.get_%s(<node>)", LIB_NAME, key); |
| 422 | } |
| 423 | |
| 424 | static int NodeProxy_newindex(lua_State *L) |
| 425 | { |
nothing calls this directly
no test coverage detected