internal
| 6503 | |
| 6504 | // internal |
| 6505 | bool asCScriptEngine::IsTemplateType(const char *name) const |
| 6506 | { |
| 6507 | // Only look in the list of template types (not instance types) |
| 6508 | for( unsigned int n = 0; n < registeredTemplateTypes.GetLength(); n++ ) |
| 6509 | { |
| 6510 | asCObjectType *type = registeredTemplateTypes[n]; |
| 6511 | if( type && type->name == name ) |
| 6512 | return true; |
| 6513 | } |
| 6514 | |
| 6515 | return false; |
| 6516 | } |
| 6517 | |
| 6518 | // internal |
| 6519 | bool asCScriptEngine::IsTemplateFn(const char* name) const |
no test coverage detected