VSCode Glean 扩展错误 -4094 - 这是什么意思?

VSCode Glean extension error -4094 - what does it mean?

我是 运行 wix/vscode-glean VSCode Windows 10 上的扩展程序,在尝试提取 React 组件时遇到了这个问题。

[2018-11-03 19:51:26.898] [renderer1] [error] [{"errno":-4094,"code":"UNKNOWN","syscall":"stat","path":"\\d:\multivariate-hypergeo\src\PopulationInput.js"}]
[2018-11-03 19:51:26.913] [renderer1] [error] [{"fileOperationResult":1,"options":{"acceptTextOnly":true}}]
[2018-11-03 19:51:26.930] [renderer1] [error] [{"fileOperationResult":1,"options":{"acceptTextOnly":true}}]

我唯一的猜测是,写这篇文章时只考虑了 linux,系统调用 'stat' 在 windows 上没有任何意义(或相同的东西)?

我提出了 an issue 但我实际上想了解潜在的问题。

错误信息是什么

{"errno":-4094,"code":"UNKNOWN","syscall":"stat","path":"\\d:\multivariate-hypergeo\src\PopulationInput.js"}

是什么意思?

该扩展已通过 these two commits.

修补以在 Windows 10 上运行

(vscode.)Uri.Parse 变为 Uri.file,例如:

edit.replace(vscode.Uri.parse(`file://${path}`), new vscode.Range(start, end), text);

成为

 edit.replace(Uri.file(path), new vscode.Range(start, end), text);

所以现在应该适用于 4.2.2 以上的版本