| Index: pkg/compiler/lib/src/tree/nodes.dart
|
| diff --git a/pkg/compiler/lib/src/tree/nodes.dart b/pkg/compiler/lib/src/tree/nodes.dart
|
| index 9335fef859d950573231a6ffac2c9611bc51107a..92c440b4d56860bd113ee3fd44c05ebb6bdf11b1 100644
|
| --- a/pkg/compiler/lib/src/tree/nodes.dart
|
| +++ b/pkg/compiler/lib/src/tree/nodes.dart
|
| @@ -1737,8 +1737,9 @@ class TypeAnnotation extends Node {
|
|
|
| class TypeVariable extends Node {
|
| final Identifier name;
|
| + final Token extendsOrSuper;
|
| final TypeAnnotation bound;
|
| - TypeVariable(Identifier this.name, TypeAnnotation this.bound);
|
| + TypeVariable(this.name, this.extendsOrSuper, this.bound);
|
|
|
| accept(Visitor visitor) => visitor.visitTypeVariable(this);
|
|
|
|
|