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

Method FindConfigGroupForFuncDef

sdk/angelscript/source/as_scriptengine.cpp:5906–5916  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5904}
5905
5906asCConfigGroup *asCScriptEngine::FindConfigGroupForFuncDef(const asCFuncdefType *funcDef) const
5907{
5908 for( asUINT n = 0; n < configGroups.GetLength(); n++ )
5909 {
5910 asCFuncdefType *f = const_cast<asCFuncdefType*>(funcDef);
5911 if( configGroups[n]->types.Exists(f) )
5912 return configGroups[n];
5913 }
5914
5915 return 0;
5916}
5917
5918// interface
5919asDWORD asCScriptEngine::SetDefaultAccessMask(asDWORD defaultMask)

Callers 1

GetConfigGroupMethod · 0.80

Calls 2

GetLengthMethod · 0.45
ExistsMethod · 0.45

Tested by

no test coverage detected