(path: string)
| 162 | let nextHandle = 1; |
| 163 | |
| 164 | const openHandle = (path: string): number => { |
| 165 | const handle = nextHandle++; |
| 166 | handles.set(handle, path); |
| 167 | return handle; |
| 168 | }; |
| 169 | |
| 170 | const openFileHandle = (path: string): number => { |
| 171 | fileOpenCounts.set(path, (fileOpenCounts.get(path) ?? 0) + 1); |
no test coverage detected