()
| 193 | } |
| 194 | |
| 195 | markDirty() { |
| 196 | if (this[isClean]) { |
| 197 | this[isClean] = false |
| 198 | let next = this |
| 199 | while ((next = next.parent)) { |
| 200 | next[isClean] = false |
| 201 | } |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | next() { |
| 206 | if (!this.parent) return undefined |
no outgoing calls
no test coverage detected