(other: Node<any>)
| 98 | } |
| 99 | |
| 100 | public compare(other: Node<any>): number { |
| 101 | if (this.visitOrderWithinRank < other.visitOrderWithinRank) { |
| 102 | return -1; |
| 103 | } else if (this.visitOrderWithinRank == other.visitOrderWithinRank) { |
| 104 | return 0; |
| 105 | } |
| 106 | return 1; |
| 107 | } |
| 108 | |
| 109 | public identifier(): string { |
| 110 | return `${this.id}`; |
no outgoing calls
no test coverage detected
searching dependent graphs…