| 1455 | static void RenderTypeChildren(lua_State *state, const std::vector<const compound_identity*> &children); |
| 1456 | |
| 1457 | void LuaWrapper::AssociateId(lua_State *state, int table, int val, const char *name) |
| 1458 | { |
| 1459 | lua_pushinteger(state, val); |
| 1460 | lua_pushstring(state, name); |
| 1461 | lua_dup(state); |
| 1462 | lua_pushinteger(state, val); |
| 1463 | |
| 1464 | lua_rawset(state, table); |
| 1465 | lua_rawset(state, table); |
| 1466 | } |
| 1467 | |
| 1468 | static void FillEnumKeys(lua_State *state, int ix_meta, int ftable, enum_identity *eid) |
| 1469 | { |
nothing calls this directly
no test coverage detected