| 5904 | } |
| 5905 | |
| 5906 | asCConfigGroup *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 |
| 5919 | asDWORD asCScriptEngine::SetDefaultAccessMask(asDWORD defaultMask) |
no test coverage detected