Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Unified Diff: pkg/front_end/lib/src/incremental_kernel_generator_impl.dart

Issue 2886993003: Fix for the compilation error. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
diff --git a/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart b/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
index 93bf43d184f693fa9f47b2ce970a2c263de1d8c7..59f12c6310a5fe55fcffa5e08fe81d745c9d880f 100644
--- a/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
+++ b/pkg/front_end/lib/src/incremental_kernel_generator_impl.dart
@@ -240,7 +240,7 @@ class IncrementalKernelGeneratorImpl implements IncrementalKernelGenerator {
dillTarget.loader.read(export.library.uri);
if (exportedLibrary != null) {
exportedLibrary.exports.forEach((name, member) {
- if (export.filter(name) &&
+ if (export.isExposed(name) &&
library.addToExportScope(name, member)) {
wasChanged = true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698