| 185 | } |
| 186 | |
| 187 | pub struct InMemoryFileSystem { |
| 188 | pub files: indexmap::IndexMap<PathBuf, String>, |
| 189 | } |
| 190 | |
| 191 | impl FileSource for InMemoryFileSystem { |
| 192 | fn read_file<'a, P: Into<&'a Path>>(&self, path: P) -> std::io::Result<String> { |
nothing calls this directly
no outgoing calls
no test coverage detected