(edges: Value[])
| 258 | return false |
| 259 | } |
| 260 | function hasAnyDefinedEdge(edges: Value[]): boolean { |
| 261 | for (let i = 0; i < 9; i++) if (edges[i]!.unit !== 0) return true |
| 262 | return false |
| 263 | } |
| 264 | |
| 265 | // Hot path: resolve all 4 physical edges in one pass, writing into `out`. |
| 266 | // Equivalent to calling resolveEdge() 4× with allowAuto=false, but hoists the |
no outgoing calls
no test coverage detected