| 282 | } |
| 283 | |
| 284 | SortNode* SortNode::pass2(thread_db* tdbb, CompilerScratch* csb) |
| 285 | { |
| 286 | for (NestConst<ValueExprNode>* i = expressions.begin(); i != expressions.end(); ++i) |
| 287 | ExprNode::doPass2(tdbb, csb, i->getAddress()); |
| 288 | |
| 289 | return this; |
| 290 | } |
| 291 | |
| 292 | bool SortNode::computable(CompilerScratch* csb, StreamType stream, bool allowOnlyCurrentStream) |
| 293 | { |
no test coverage detected