| Index: pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart b/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
|
| index 2408441ebc309790ab342c4bafbacd756f0e592d..36c98968ed0d13a5b062b0c80a1650644e3493f6 100644
|
| --- a/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
|
| +++ b/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
|
| @@ -5,6 +5,7 @@
|
| library fasta.type_variable_builder;
|
|
|
| import 'builder.dart' show
|
| + LibraryBuilder,
|
| TypeBuilder,
|
| TypeDeclarationBuilder;
|
|
|
| @@ -12,8 +13,9 @@ abstract class TypeVariableBuilder<T extends TypeBuilder, R>
|
| extends TypeDeclarationBuilder<T, R> {
|
| T bound;
|
|
|
| - TypeVariableBuilder(String name, this.bound)
|
| - : super(null, null, name, null, null);
|
| + TypeVariableBuilder(String name, this.bound, LibraryBuilder compilationUnit,
|
| + int charOffset)
|
| + : super(null, null, name, null, compilationUnit, charOffset);
|
|
|
| String get debugName => "TypeVariableBuilder";
|
|
|
|
|