(range: ByteRange)
| 869 | // Parse one path-item range to its kept (optionally trimmed) value, applying |
| 870 | // `keepPathItem` identically in both passes so the operation index aligns. |
| 871 | const keptPathItem = (range: ByteRange): readonly [string, PathItemObject] | null => |
| 872 | parseKeptPathItem(structure, range, keepPathItem); |
| 873 | |
| 874 | // Pass 1 (light): collect schema-free tool-path planning metadata in |
| 875 | // document order. No bindings, no schemas; one path-item resident at a time. |
no test coverage detected