| 1321 | } |
| 1322 | |
| 1323 | static void BuildTypeMetatable(lua_State *state, const type_identity *type) |
| 1324 | { |
| 1325 | type->build_metatable(state); |
| 1326 | |
| 1327 | lua_pop(state, 1); |
| 1328 | |
| 1329 | SaveTypeInfo(state, const_cast<type_identity*>(type)); |
| 1330 | } |
| 1331 | |
| 1332 | /* |
| 1333 | * Recursive walk of scopes to construct the df... tree. |
no test coverage detected