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

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

Issue 2691523002: Ensure locations are always provided, but don't store them yet. (Closed)
Patch Set: Address comments. Created 3 years, 10 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
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 }
OLDNEW
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/modifier_builder.dart ('k') | pkg/front_end/lib/src/fasta/builder/named_type_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698