| 808 | |
| 809 | #ifdef CPPIA_JIT |
| 810 | static void SLJIT_CALL callScriptable(CppiaCtx *inCtx, ScriptCallable *inScriptable) |
| 811 | { |
| 812 | // compiled? |
| 813 | CPPIALOG("callScriptable %p(%p) -> %p\n", inCtx, CppiaCtx::getCurrent(), inScriptable ); |
| 814 | CPPIALOG(" name = %s\n", inScriptable->getName()); |
| 815 | inScriptable->runFunction(inCtx); |
| 816 | CPPIALOG(" Done scipt callable\n"); |
| 817 | } |
| 818 | |
| 819 | |
| 820 | // Function Call |
nothing calls this directly
no test coverage detected