| 358 | } |
| 359 | |
| 360 | HNode LuaCheckNode(lua_State* L, int index) |
| 361 | { |
| 362 | HNode hnode; |
| 363 | InternalNode* n = LuaCheckNodeInternal(L, index, &hnode); |
| 364 | (void)n; |
| 365 | return hnode; |
| 366 | } |
| 367 | |
| 368 | static int NodeProxy_tostring (lua_State *L) |
| 369 | { |
no test coverage detected