(u: unknown)
| 371 | for (const [edgeIndex, edgeData] of this.edges) { |
| 372 | if (!thatImpl.edges.has(edgeIndex)) { |
| 373 | return false |
| 374 | } |
| 375 | const otherEdge = thatImpl.edges.get(edgeIndex)! |
| 376 | if (!edgeEquals(this.type, edgeData, otherEdge)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…