| 88 | } |
| 89 | |
| 90 | interface Edge { |
| 91 | fromRail: number |
| 92 | toRail: number |
| 93 | color: string |
| 94 | type: 'straight' | 'merge-in' | 'fork-out' |
| 95 | } |
| 96 | |
| 97 | function computeLayout(commits: Commit[]): GraphRow[] { |
| 98 | const rows: GraphRow[] = [] |
nothing calls this directly
no outgoing calls
no test coverage detected