internal
| 1533 | |
| 1534 | // internal |
| 1535 | void asCModule::AddFuncDef(asCFuncdefType* type) |
| 1536 | { |
| 1537 | m_funcDefs.PushLast(type); |
| 1538 | m_typeLookup.Insert(asSNameSpaceNamePair(type->nameSpace, type->name), type); |
| 1539 | } |
| 1540 | |
| 1541 | // internal |
| 1542 | void asCModule::ReplaceFuncDef(asCFuncdefType* type, asCFuncdefType* newType) |
no test coverage detected