| 438 | } |
| 439 | |
| 440 | bool ExprNode::computable(CompilerScratch* csb, StreamType stream, |
| 441 | bool allowOnlyCurrentStream, ValueExprNode* /*value*/) |
| 442 | { |
| 443 | NodeRefsHolder holder(csb->csb_pool); |
| 444 | getChildren(holder, false); |
| 445 | |
| 446 | for (auto i : holder.refs) |
| 447 | { |
| 448 | if (*i && !(*i)->computable(csb, stream, allowOnlyCurrentStream)) |
| 449 | return false; |
| 450 | } |
| 451 | |
| 452 | return true; |
| 453 | } |
| 454 | |
| 455 | void ExprNode::findDependentFromStreams(const CompilerScratch* csb, |
| 456 | StreamType currentStream, SortedStreamList* streamList) |
nothing calls this directly
no test coverage detected