| 100 | } |
| 101 | |
| 102 | DmlNode* BinaryBoolNode::parse(thread_db* tdbb, MemoryPool& pool, CompilerScratch* csb, const UCHAR blrOp) |
| 103 | { |
| 104 | BinaryBoolNode* node = FB_NEW_POOL(pool) BinaryBoolNode(pool, blrOp); |
| 105 | node->arg1 = PAR_parse_boolean(tdbb, csb); |
| 106 | node->arg2 = PAR_parse_boolean(tdbb, csb); |
| 107 | return node; |
| 108 | } |
| 109 | |
| 110 | string BinaryBoolNode::internalPrint(NodePrinter& printer) const |
| 111 | { |
nothing calls this directly
no test coverage detected