Chromium Code Reviews| Index: pkg/front_end/lib/src/incremental/file_state.dart |
| diff --git a/pkg/front_end/lib/src/incremental/file_state.dart b/pkg/front_end/lib/src/incremental/file_state.dart |
| index 183ef202a5138b7ddcf3b7dfc6681793e5f2a4c9..dcd43fb9d3b545caa0f24fbfda5cdb54fbcf3e66 100644 |
| --- a/pkg/front_end/lib/src/incremental/file_state.dart |
| +++ b/pkg/front_end/lib/src/incremental/file_state.dart |
| @@ -135,14 +135,14 @@ class FileState { |
| _importedLibraries.add(coreFile); |
| } |
| } |
| - for (ImportDirective import_ in listener.imports) { |
| + for (NamespaceDirective import_ in listener.imports) { |
| FileState file = await _getFileForRelativeUri(import_.uri); |
| if (file != null) { |
| _importedLibraries.add(file); |
| } |
| } |
| await _addVmTargetImportsForCore(); |
| - for (ExportDirective export_ in listener.exports) { |
| + for (NamespaceDirective export_ in listener.exports) { |
| FileState file = await _getFileForRelativeUri(export_.uri); |
| if (file != null) { |
| _exportedLibraries.add(file); |
| @@ -287,7 +287,7 @@ class NamespaceExport { |
| NamespaceExport(this.library, this.combinators); |
| /// Return `true` if the [name] satisfies the sequence of the [combinators]. |
|
Siggi Cherem (dart-lang)
2017/05/16 21:42:04
consider updating the dartdoc to say that it is th
scheglov
2017/05/17 00:07:31
Well, it's different way to say the same.
I'm not
|
| - bool filter(String name) { |
| + bool isExposed(String name) { |
| for (NamespaceCombinator combinator in combinators) { |
| if (combinator.isShow) { |
| if (!combinator.names.contains(name)) { |