| 7625 | return hx::DoubleMod(lval,right->runFloat(ctx)); |
| 7626 | } |
| 7627 | Float runFloat(CppiaCtx *ctx) HXCPP_OVERRIDE |
| 7628 | { |
| 7629 | Float lval = left->runFloat(ctx); |
| 7630 | BCR_CHECK; |
| 7631 | return hx::DoubleMod(lval,right->runFloat(ctx)); |
| 7632 | } |
| 7633 | |
| 7634 | #ifdef CPPIA_JIT |
| 7635 | void genCode(CppiaCompiler *compiler, const JitVal &inDest, ExprType destType) HXCPP_OVERRIDE |