| 3162 | } |
| 3163 | |
| 3164 | ValueExprNode* ArithmeticNode::dsqlPass(DsqlCompilerScratch* dsqlScratch) |
| 3165 | { |
| 3166 | return FB_NEW_POOL(dsqlScratch->getPool()) ArithmeticNode(dsqlScratch->getPool(), |
| 3167 | blrOp, dialect1, doDsqlPass(dsqlScratch, arg1), doDsqlPass(dsqlScratch, arg2)); |
| 3168 | } |
| 3169 | |
| 3170 | |
| 3171 | //-------------------- |
nothing calls this directly
no test coverage detected