| Index: pkg/front_end/lib/src/fasta/builder/type_builder.dart
 | 
| diff --git a/pkg/front_end/lib/src/fasta/builder/type_builder.dart b/pkg/front_end/lib/src/fasta/builder/type_builder.dart
 | 
| index 0421ff2b27cf7fc87e2ed517ad4d3d297b43c6b4..4a913217e7248a7bac525f395941c2b8135b79b7 100644
 | 
| --- a/pkg/front_end/lib/src/fasta/builder/type_builder.dart
 | 
| +++ b/pkg/front_end/lib/src/fasta/builder/type_builder.dart
 | 
| @@ -4,18 +4,13 @@
 | 
|  
 | 
|  library fasta.type_builder;
 | 
|  
 | 
| -import 'builder.dart' show
 | 
| -    Builder,
 | 
| -    TypeDeclarationBuilder,
 | 
| -    TypeVariableBuilder;
 | 
| +import 'builder.dart' show Builder, TypeDeclarationBuilder, TypeVariableBuilder;
 | 
|  
 | 
| -import 'scope.dart' show
 | 
| -    Scope;
 | 
| +import 'scope.dart' show Scope;
 | 
|  
 | 
|  // TODO(ahe): Make const class.
 | 
|  abstract class TypeBuilder extends Builder {
 | 
| -  TypeBuilder(int charOffset, Uri fileUri)
 | 
| -      : super(null, charOffset, fileUri);
 | 
| +  TypeBuilder(int charOffset, Uri fileUri) : super(null, charOffset, fileUri);
 | 
|  
 | 
|    void resolveIn(Scope scope);
 | 
|  
 | 
| 
 |