| 3811 | } |
| 3812 | |
| 3813 | void ExecStatementNode::genOptionalExpr(DsqlCompilerScratch* dsqlScratch, const UCHAR code, |
| 3814 | ValueExprNode* node) |
| 3815 | { |
| 3816 | if (node) |
| 3817 | { |
| 3818 | dsqlScratch->appendUChar(code); |
| 3819 | GEN_expr(dsqlScratch, node); |
| 3820 | } |
| 3821 | } |
| 3822 | |
| 3823 | ExecStatementNode* ExecStatementNode::pass1(thread_db* tdbb, CompilerScratch* csb) |
| 3824 | { |
nothing calls this directly
no test coverage detected