| 426 | } |
| 427 | |
| 428 | void ExprNode::collectStreams(SortedStreamList& streamList) const |
| 429 | { |
| 430 | NodeRefsHolder holder; |
| 431 | getChildren(holder, false); |
| 432 | |
| 433 | for (auto i : holder.refs) |
| 434 | { |
| 435 | if (*i) |
| 436 | (*i)->collectStreams(streamList); |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | bool ExprNode::computable(CompilerScratch* csb, StreamType stream, |
| 441 | bool allowOnlyCurrentStream, ValueExprNode* /*value*/) |
no test coverage detected