contextFor method
Returns the AnalysisContext for the given filePath.
Implementation
AnalysisContext contextFor(String filePath) {
final absPath = p.normalize(p.absolute(filePath));
return collection.contextFor(absPath);
}
Returns the AnalysisContext for the given filePath.
AnalysisContext contextFor(String filePath) {
final absPath = p.normalize(p.absolute(filePath));
return collection.contextFor(absPath);
}