| 125 | } |
| 126 | |
| 127 | void BinaryBoolNode::genBlr(DsqlCompilerScratch* dsqlScratch) |
| 128 | { |
| 129 | dsqlScratch->appendUChar(blrOp); |
| 130 | GEN_expr(dsqlScratch, arg1); |
| 131 | GEN_expr(dsqlScratch, arg2); |
| 132 | } |
| 133 | |
| 134 | bool BinaryBoolNode::dsqlMatch(DsqlCompilerScratch* dsqlScratch, const ExprNode* other, bool ignoreMapCast) const |
| 135 | { |
nothing calls this directly
no test coverage detected