| 5859 | } |
| 5860 | |
| 5861 | asCConfigGroup *asCScriptEngine::FindConfigGroupForFunction(int funcId) const |
| 5862 | { |
| 5863 | for( asUINT n = 0; n < configGroups.GetLength(); n++ ) |
| 5864 | { |
| 5865 | // Check global functions |
| 5866 | asUINT m; |
| 5867 | for( m = 0; m < configGroups[n]->scriptFunctions.GetLength(); m++ ) |
| 5868 | { |
| 5869 | if( configGroups[n]->scriptFunctions[m]->id == funcId ) |
| 5870 | return configGroups[n]; |
| 5871 | } |
| 5872 | } |
| 5873 | |
| 5874 | return 0; |
| 5875 | } |
| 5876 | |
| 5877 | |
| 5878 | asCConfigGroup *asCScriptEngine::FindConfigGroupForGlobalVar(int gvarId) const |
no test coverage detected