| 4354 | } |
| 4355 | |
| 4356 | void asCScriptEngine::CallObjectMethod(void *obj, int func) const |
| 4357 | { |
| 4358 | asCScriptFunction *s = scriptFunctions[func]; |
| 4359 | asASSERT( s != 0 ); |
| 4360 | CallObjectMethod(obj, s->sysFuncIntf, s); |
| 4361 | } |
| 4362 | |
| 4363 | void asCScriptEngine::CallObjectMethod(void *obj, asSSystemFunctionInterface *i, asCScriptFunction *s) const |
| 4364 | { |
no outgoing calls
no test coverage detected