internal
| 1591 | |
| 1592 | // internal |
| 1593 | asCObjectType *asCModule::GetObjectType(const char *type, asSNameSpace *ns) const |
| 1594 | { |
| 1595 | asSMapNode<asSNameSpaceNamePair, asCTypeInfo*>* result = nullptr; |
| 1596 | if(m_typeLookup.MoveTo(&result, {ns, type})) |
| 1597 | { |
| 1598 | return CastToObjectType(result->value); |
| 1599 | } |
| 1600 | |
| 1601 | return 0; |
| 1602 | } |
| 1603 | |
| 1604 | // internal |
| 1605 | asCGlobalProperty *asCModule::AllocateGlobalProperty(const char *propName, const asCDataType &dt, asSNameSpace *ns) |
no test coverage detected