getFile method
Return a File
that corresponds to the given path
.
The path
must be absolute and normalized.
A file may or may not exist at this location.
Implementation
@override
File getFile(String path) {
final file = fs.file(path);
return file.toAnalyzerFile();
}