(node)
| 6881 | throw new python.Error('Not implemented.'); |
| 6882 | } |
| 6883 | markIfLive(node) { |
| 6884 | for (const output of node.outputs()) { |
| 6885 | if (this._liveValues.has(output)) { |
| 6886 | return this.mark(node); |
| 6887 | } |
| 6888 | } |
| 6889 | if (this._useAliasDb) { |
| 6890 | if (this.getOrCreateAliasDb().writesToAlias(node, this._liveValues)) { |
| 6891 | return this.mark(node); |
| 6892 | } |
| 6893 | } |
| 6894 | return false; |
| 6895 | } |
| 6896 | sweep(block, recurse) { |
| 6897 | const nodes = Array.from(block.nodes()).reverse(); |
| 6898 | for (const node of nodes) { |
no test coverage detected