(context: vscode.ExtensionContext)
| 12 | |
| 13 | return { |
| 14 | register(context: vscode.ExtensionContext) { |
| 15 | context.subscriptions.push( |
| 16 | vscode.workspace.registerFileSystemProvider("memfs", fs, { |
| 17 | isCaseSensitive: true, |
| 18 | }) |
| 19 | ); |
| 20 | }, |
| 21 | writeFile(path: string, content: string) { |
| 22 | if (!path.startsWith("/")) path = "/" + path; |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected