(visualList: CacheBreakVisual[])
| 92 | } |
| 93 | |
| 94 | function removeUnusedCacheVisual(visualList: CacheBreakVisual[]): void { |
| 95 | for (let i = visualList.length - 1; i >= 0; i--) { |
| 96 | if (visualList[i].shouldRemove) { |
| 97 | visualList.splice(i, 1); |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | function rectCoordBuildBreakAxis( |
| 103 | axisGroup: Group, |
no outgoing calls
no test coverage detected
searching dependent graphs…