| 5882 | } |
| 5883 | |
| 5884 | asCScriptFunction *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 | |
| 5894 | void asCBuilder::GetFunctionDescriptions(const char *name, asCArray<int> &funcs, asSNameSpace *ns) |
| 5895 | { |
no outgoing calls
no test coverage detected