| 367 | } |
| 368 | |
| 369 | bool ASContext::HasFunction(ASFunctionHandle handle) { |
| 370 | if (handle < 0) { |
| 371 | return false; |
| 372 | } |
| 373 | |
| 374 | return expected_functions[handle].func_ptr; |
| 375 | } |
| 376 | |
| 377 | bool ASContext::CallScriptFunction(ASFunctionHandle handle, const ASArglist *args, ASArg *return_val) { |
| 378 | if (handle >= 0) { |
nothing calls this directly
no test coverage detected