| 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;
|
| }
|
|
|
|
|