MCPcopy Create free account
hub / github.com/anjo76/angelscript / FindConfigGroupForTypeInfo

Method FindConfigGroupForTypeInfo

sdk/angelscript/source/as_scriptengine.cpp:5892–5904  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5890}
5891
5892asCConfigGroup *asCScriptEngine::FindConfigGroupForTypeInfo(const asCTypeInfo *objType) const
5893{
5894 for( asUINT n = 0; n < configGroups.GetLength(); n++ )
5895 {
5896 for( asUINT m = 0; m < configGroups[n]->types.GetLength(); m++ )
5897 {
5898 if( configGroups[n]->types[m] == objType )
5899 return configGroups[n];
5900 }
5901 }
5902
5903 return 0;
5904}
5905
5906asCConfigGroup *asCScriptEngine::FindConfigGroupForFuncDef(const asCFuncdefType *funcDef) const
5907{

Callers 6

GetConfigGroupMethod · 0.80
AddReferencesForTypeMethod · 0.80
AddPropertyToClassMethod · 0.80
ReleaseAllPropertiesMethod · 0.80
AddReferencesMethod · 0.80
ReleaseReferencesMethod · 0.80

Calls 1

GetLengthMethod · 0.45

Tested by

no test coverage detected