| 597 | } |
| 598 | |
| 599 | DmlNode* ArithmeticNode::parse(thread_db* tdbb, MemoryPool& pool, CompilerScratch* csb, const UCHAR blrOp) |
| 600 | { |
| 601 | ArithmeticNode* node = FB_NEW_POOL(pool) ArithmeticNode( |
| 602 | pool, blrOp, (csb->blrVersion == 4)); |
| 603 | node->arg1 = PAR_parse_value(tdbb, csb); |
| 604 | node->arg2 = PAR_parse_value(tdbb, csb); |
| 605 | return node; |
| 606 | } |
| 607 | |
| 608 | string ArithmeticNode::internalPrint(NodePrinter& printer) const |
| 609 | { |
nothing calls this directly
no test coverage detected