| 623 | CppiaExpr *link(CppiaModule &inModule) HXCPP_OVERRIDE { condition = condition->link(inModule); return this; } |
| 624 | |
| 625 | int runInt(CppiaCtx *ctx) HXCPP_OVERRIDE |
| 626 | { |
| 627 | if (condition->getType()==etString) |
| 628 | return condition->runString(ctx)!=null(); |
| 629 | else |
| 630 | return condition->runObject(ctx)!=0; |
| 631 | } |
| 632 | |
| 633 | |
| 634 | #ifdef CPPIA_JIT |