(checkLink: Link, sub: ReactiveNode)
| 250 | } |
| 251 | |
| 252 | function isValidLink(checkLink: Link, sub: ReactiveNode): boolean { |
| 253 | let link = sub.depsTail; |
| 254 | while (link !== undefined) { |
| 255 | if (link === checkLink) { |
| 256 | return true; |
| 257 | } |
| 258 | link = link.prevDep; |
| 259 | } |
| 260 | return false; |
| 261 | } |
| 262 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…