Notify all drivers about all changed files.

R=brianwilkerson@google.com
BUG=

Review URL: https://codereview.chromium.org/2489063002 .
This commit is contained in:
Konstantin Shcheglov 2016-11-09 11:32:02 -08:00
parent 80f289e54d
commit b6c02291b8

View file

@ -1440,7 +1440,9 @@ class ContextManagerImpl implements ContextManager {
break;
case ChangeType.MODIFY:
if (enableNewAnalysisDriver) {
info.analysisDriver.changeFile(path);
for (AnalysisDriver driver in driverMap.values) {
driver.changeFile(path);
}
} else {
List<Source> sources = info.context.getSourcesWithFullName(path);
if (!sources.isEmpty) {