Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(851)

Side by Side Diff: pkg/fasta/lib/src/builder/named_mixin_application_builder.dart

Issue 2629063005: Fasta builders. (Closed)
Patch Set: Address review comments. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « pkg/fasta/lib/src/builder/modifier_builder.dart ('k') | pkg/fasta/lib/src/builder/prefix_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698