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

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

Issue 2862223002: Rewrite mixin application handling in Fasta. (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
Index: pkg/front_end/lib/src/fasta/source/outline_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/source/outline_builder.dart b/pkg/front_end/lib/src/fasta/source/outline_builder.dart
index eabda9e41e0ca78ea504bb2ad62ecf4be859c302..99df0578248012f85a1fd6d2cf2d32180f7ec928 100644
--- a/pkg/front_end/lib/src/fasta/source/outline_builder.dart
+++ b/pkg/front_end/lib/src/fasta/source/outline_builder.dart
@@ -441,10 +441,6 @@ class OutlineBuilder extends UnhandledListener {
List<TypeVariableBuilder> typeVariables = pop();
int charOffset = pop();
String name = pop();
- if (typeVariables != null && mixinApplication is MixinApplicationBuilder) {
- mixinApplication.typeVariables = typeVariables;
- mixinApplication.subclassName = name;
- }
int modifiers = Modifier.validate(pop());
List<MetadataBuilder> metadata = pop();
library.addNamedMixinApplication(metadata, name, typeVariables, modifiers,

Powered by Google App Engine
This is Rietveld 408576698