| 797 | } |
| 798 | |
| 799 | void runVoid(CppiaCtx *ctx) HXCPP_OVERRIDE |
| 800 | { |
| 801 | unsigned char *pointer = ctx->pointer; |
| 802 | function->pushArgs(ctx,thisExpr?thisExpr->runObject(ctx):ctx->getThis(false),args); |
| 803 | BCR_VCHECK; |
| 804 | |
| 805 | AutoStack save(ctx,pointer); |
| 806 | ctx->runVoid(function); |
| 807 | } |
| 808 | |
| 809 | #ifdef CPPIA_JIT |
| 810 | static void SLJIT_CALL callScriptable(CppiaCtx *inCtx, ScriptCallable *inScriptable) |