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

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

Issue 2709943005: Canonicalize mixin applications by their name (Closed)
Patch Set: Address comment Created 3 years, 10 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
Index: pkg/front_end/lib/src/fasta/kernel/kernel_target.dart
diff --git a/pkg/front_end/lib/src/fasta/kernel/kernel_target.dart b/pkg/front_end/lib/src/fasta/kernel/kernel_target.dart
index 60ca3f219acb6ca1f43bb8a531f540efcc1a9c6d..9e391c2614f43ee23bf987e340ff7227ac040056 100644
--- a/pkg/front_end/lib/src/fasta/kernel/kernel_target.dart
+++ b/pkg/front_end/lib/src/fasta/kernel/kernel_target.dart
@@ -194,16 +194,6 @@ class KernelTarget extends TargetImplementation {
return result;
}
- List<Class> collectAllMixinApplications() {
- List<Class> result = <Class>[];
- loader.builders.forEach((Uri uri, LibraryBuilder library) {
- if (library is KernelLibraryBuilder) {
- result.addAll(library.mixinApplicationClasses);
- }
- });
- return result;
- }
-
void breakCycle(ClassBuilder builder) {
Class cls = builder.target;
cls.implementedTypes.clear();
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/kernel_mixin_application_builder.dart ('k') | pkg/front_end/test/fasta/compile.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698