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

Method GetFunctionDescription

sdk/angelscript/source/as_builder.cpp:5884–5892  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5882}
5883
5884asCScriptFunction *asCBuilder::GetFunctionDescription(int id)
5885{
5886 // TODO: import: This should be improved when the imported functions are removed
5887 // Get the description from the engine
5888 if( (id & FUNC_IMPORTED) == 0 )
5889 return engine->scriptFunctions[id];
5890 else
5891 return engine->importedFunctions[id & ~FUNC_IMPORTED]->importedFunctionSignature;
5892}
5893
5894void asCBuilder::GetFunctionDescriptions(const char *name, asCArray<int> &funcs, asSNameSpace *ns)
5895{

Callers 15

DetermineSingleFuncMethod · 0.80
PrepareFunctionCallMethod · 0.80
MoveArgsToStackMethod · 0.80
MatchFunctionsMethod · 0.80
PrintMatchingFuncsMethod · 0.80
ImplicitConvObjectRefMethod · 0.80
DoAssignmentMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected