| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library fasta.named_mixin_application_builder; | 5 library fasta.named_mixin_application_builder; |
| 6 | 6 |
| 7 import 'builder.dart' show | 7 import 'builder.dart' show |
| 8 Builder, | 8 Builder, |
| 9 ClassBuilder, | 9 ClassBuilder, |
| 10 LibraryBuilder, | 10 LibraryBuilder, |
| 11 MetadataBuilder, | 11 MetadataBuilder, |
| 12 TypeBuilder, | 12 TypeBuilder, |
| 13 TypeVariableBuilder; | 13 TypeVariableBuilder; |
| 14 | 14 |
| 15 abstract class NamedMixinApplicationBuilder<T extends TypeBuilder, R> | 15 abstract class NamedMixinApplicationBuilder<T extends TypeBuilder, R> |
| 16 extends ClassBuilder<T, R> { | 16 extends ClassBuilder<T, R> { |
| 17 NamedMixinApplicationBuilder( | 17 NamedMixinApplicationBuilder( |
| 18 List<MetadataBuilder> metadata, String name, | 18 List<MetadataBuilder> metadata, String name, |
| 19 List<TypeVariableBuilder> typeVariables, int modifiers, T supertype, | 19 List<TypeVariableBuilder> typeVariables, int modifiers, T supertype, |
| 20 List<T> interfaces, List<T> types, LibraryBuilder parent) | 20 List<T> interfaces, List<T> types, LibraryBuilder parent, int charOffset) |
| 21 : super(metadata, modifiers, name, typeVariables, supertype, interfaces, | 21 : super(metadata, modifiers, name, typeVariables, supertype, interfaces, |
| 22 <String, Builder>{}, types, parent); | 22 <String, Builder>{}, types, parent, charOffset); |
| 23 | 23 |
| 24 T get mixinApplication => supertype; | 24 T get mixinApplication => supertype; |
| 25 } | 25 } |
| OLD | NEW |