| 274 | } |
| 275 | |
| 276 | SortNode* SortNode::pass1(thread_db* tdbb, CompilerScratch* csb) |
| 277 | { |
| 278 | for (NestConst<ValueExprNode>* i = expressions.begin(); i != expressions.end(); ++i) |
| 279 | DmlNode::doPass1(tdbb, csb, i->getAddress()); |
| 280 | |
| 281 | return this; |
| 282 | } |
| 283 | |
| 284 | SortNode* SortNode::pass2(thread_db* tdbb, CompilerScratch* csb) |
| 285 | { |
nothing calls this directly
no test coverage detected