| 290 | } |
| 291 | |
| 292 | bool SortNode::computable(CompilerScratch* csb, StreamType stream, bool allowOnlyCurrentStream) |
| 293 | { |
| 294 | for (NestConst<ValueExprNode>* i = expressions.begin(); i != expressions.end(); ++i) |
| 295 | { |
| 296 | if (!(*i)->computable(csb, stream, allowOnlyCurrentStream)) |
| 297 | return false; |
| 298 | } |
| 299 | |
| 300 | return true; |
| 301 | } |
| 302 | |
| 303 | void SortNode::findDependentFromStreams(const CompilerScratch* csb, |
| 304 | StreamType currentStream, SortedStreamList* streamList) |
no test coverage detected