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

Unified Diff: sdk/lib/_internal/compiler/implementation/tree/nodes.dart

Issue 26651006: Switch dart2js 'typedef name = mixinApplication' to 'class name = mixinApplication'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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: sdk/lib/_internal/compiler/implementation/tree/nodes.dart
diff --git a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
index 6f3389a51249742929191703d28030f48b7da5a8..9b9a6ada4ee6ab704f900a6976829ec1eae94a6c 100644
--- a/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
+++ b/sdk/lib/_internal/compiler/implementation/tree/nodes.dart
@@ -267,12 +267,12 @@ class NamedMixinApplication extends Node implements MixinApplication {
final MixinApplication mixinApplication;
final NodeList interfaces;
- final Token typedefKeyword;
+ final Token classKeyword;
final Token endToken;
NamedMixinApplication(this.name, this.typeParameters,
this.modifiers, this.mixinApplication, this.interfaces,
- this.typedefKeyword, this.endToken);
+ this.classKeyword, this.endToken);
TypeAnnotation get superclass => mixinApplication.superclass;
NodeList get mixins => mixinApplication.mixins;
@@ -290,7 +290,7 @@ class NamedMixinApplication extends Node implements MixinApplication {
mixinApplication.accept(visitor);
}
- Token getBeginToken() => typedefKeyword;
+ Token getBeginToken() => classKeyword;
Token getEndToken() => endToken;
}

Powered by Google App Engine
This is Rietveld 408576698