internal
| 1526 | |
| 1527 | // internal |
| 1528 | void asCModule::AddTypeDef(asCTypedefType* type) |
| 1529 | { |
| 1530 | m_typeDefs.PushLast(type); |
| 1531 | m_typeLookup.Insert(asSNameSpaceNamePair(type->nameSpace, type->name), type); |
| 1532 | } |
| 1533 | |
| 1534 | // internal |
| 1535 | void asCModule::AddFuncDef(asCFuncdefType* type) |
no test coverage detected