(&self, _path: &WorkspacePath)
| 1026 | #[async_trait] |
| 1027 | impl WorkspaceFileSystem for EmptyFs { |
| 1028 | async fn read_text(&self, _path: &WorkspacePath) -> WorkspaceResult<String> { |
| 1029 | Err(WorkspaceError::Unsupported("not implemented".into())) |
| 1030 | } |
| 1031 | |
| 1032 | async fn write_text( |
| 1033 | &self, |
no outgoing calls
no test coverage detected