DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Workspace/WorkspaceFileService.rs
1//! Parsing and serialization of VS Code `.code-workspace` JSON files.
2//!
3//! The format is a JSON object with at minimum a `folders` array; each entry
4//! has a `path` relative to the workspace file's parent directory.
5//! `ParseWorkspaceFile::Fn` resolves each path through the canonical-path
6//! cache and converts it to a `file://` URI.
7
8pub mod ParseWorkspaceFile;
9
10pub(crate) mod WorkspaceFile;
11
12pub(crate) mod WorkspaceFolderEntry;