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

Unified Diff: pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart

Issue 3004703002: Don't export unnamed mixins. (Closed)
Patch Set: Update transitive_mixins.dart.shaker 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/mixin_export_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/kernel/kernel_library_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart b/pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart
index 99fc60f3ec0ecb65c98690afca5e8c081ff1133c..1d69d1583a46421e6aac883d132d42ba2be957c8 100644
--- a/pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart
+++ b/pkg/front_end/lib/src/fasta/kernel/kernel_library_builder.dart
@@ -242,7 +242,7 @@ class KernelLibraryBuilder
if (index != -1) {
name = name.substring(0, index);
}
- name = "$name&${mixin.name}$signature";
+ name = "_$name&${mixin.name}$signature";
builder = mixinApplicationClasses[name];
}
if (builder == null) {
« no previous file with comments | « no previous file | pkg/front_end/test/mixin_export_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698