| 631 | } |
| 632 | |
| 633 | void ArithmeticNode::genBlr(DsqlCompilerScratch* dsqlScratch) |
| 634 | { |
| 635 | dsqlScratch->appendUChar(blrOp); |
| 636 | GEN_expr(dsqlScratch, arg1); |
| 637 | GEN_expr(dsqlScratch, arg2); |
| 638 | } |
| 639 | |
| 640 | namespace |
| 641 | { |
nothing calls this directly
no test coverage detected