| Index: pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart
|
| diff --git a/pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart b/pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart
|
| index b3948c9e98016ec12e539ef47d1663974edcdb83..30c601514c18b8f43dc8c9977e6a21977614c37e 100644
|
| --- a/pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart
|
| +++ b/pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart
|
| @@ -23,7 +23,8 @@ abstract class TypeDeclarationBuilder<T extends TypeBuilder, R>
|
| Builder parent;
|
|
|
| TypeDeclarationBuilder(this.metadata, this.modifiers, this.name, this.types,
|
| - this.parent);
|
| + Builder parent, int charOffset, [Uri fileUri])
|
| + : parent = parent, super(parent, charOffset, fileUri ?? parent?.fileUri);
|
|
|
| bool get isTypeDeclaration => true;
|
|
|
|
|