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

Unified Diff: pkg/front_end/lib/src/fasta/source/source_loader.dart

Issue 3004123002: Don't re-export hidden members. (Closed)
Patch Set: Move testing.json to own CL. Created 3 years, 4 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 | pkg/front_end/test/fasta/reexport_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/source/source_loader.dart
diff --git a/pkg/front_end/lib/src/fasta/source/source_loader.dart b/pkg/front_end/lib/src/fasta/source/source_loader.dart
index a5f5ed2a68d796239de913ebf768805e61cc8357..aa70b336fef059f1b6e05290b9214ea9a1accd32 100644
--- a/pkg/front_end/lib/src/fasta/source/source_loader.dart
+++ b/pkg/front_end/lib/src/fasta/source/source_loader.dart
@@ -231,9 +231,8 @@ class SourceLoader<L> extends Loader<L> {
wasChanged = false;
for (SourceLibraryBuilder exported in both) {
for (Export export in exported.exporters) {
- SourceLibraryBuilder exporter = export.exporter;
exported.exportScope.forEach((String name, Builder member) {
- if (exporter.addToExportScope(name, member)) {
+ if (export.addToExportScope(name, member)) {
wasChanged = true;
}
});
« no previous file with comments | « no previous file | pkg/front_end/test/fasta/reexport_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698