| 550 | |
| 551 | hx::Object *runObject(CppiaCtx *ctx) HXCPP_OVERRIDE { runVoid(ctx); return 0; } |
| 552 | void runVoid(CppiaCtx *ctx) HXCPP_OVERRIDE |
| 553 | { |
| 554 | if (condition->runInt(ctx)) |
| 555 | { |
| 556 | BCR_VCHECK; |
| 557 | doIf->runVoid(ctx); |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | #ifdef CPPIA_JIT |
| 562 | void genCode(CppiaCompiler *compiler, const JitVal &inDest, ExprType destType) HXCPP_OVERRIDE |