OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 library fasta.named_mixin_application_builder; |
| 6 |
| 7 import 'builder.dart' show |
| 8 Builder, |
| 9 ClassBuilder, |
| 10 LibraryBuilder, |
| 11 MetadataBuilder, |
| 12 TypeBuilder, |
| 13 TypeVariableBuilder; |
| 14 |
| 15 abstract class NamedMixinApplicationBuilder<T extends TypeBuilder, R> |
| 16 extends ClassBuilder<T, R> { |
| 17 NamedMixinApplicationBuilder( |
| 18 List<MetadataBuilder> metadata, String name, |
| 19 List<TypeVariableBuilder> typeVariables, int modifiers, T supertype, |
| 20 List<T> interfaces, List<T> types, LibraryBuilder parent) |
| 21 : super(metadata, modifiers, name, typeVariables, supertype, interfaces, |
| 22 <String, Builder>{}, types, parent); |
| 23 |
| 24 T get mixinApplication => supertype; |
| 25 } |
OLD | NEW |