| 4077 | } |
| 4078 | |
| 4079 | void asCScriptEngine::CallObjectMethod(void *obj, int func) const |
| 4080 | { |
| 4081 | asCScriptFunction *s = scriptFunctions[func]; |
| 4082 | asASSERT( s != 0 ); |
| 4083 | CallObjectMethod(obj, s->sysFuncIntf, s); |
| 4084 | } |
| 4085 | |
| 4086 | void asCScriptEngine::CallObjectMethod(void *obj, asSSystemFunctionInterface *i, asCScriptFunction *s) const |
| 4087 | { |
no outgoing calls
no test coverage detected