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

Unified Diff: pkg/front_end/lib/src/fasta/kernel/kernel_class_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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/lib/src/fasta/kernel/kernel_class_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/kernel/kernel_class_builder.dart b/pkg/front_end/lib/src/fasta/kernel/kernel_class_builder.dart
index 8240de74216fe90478169078fb7bb248809eb087..45ca2c205e5216975af31f2621c3c689feaf18cb 100644
--- a/pkg/front_end/lib/src/fasta/kernel/kernel_class_builder.dart
+++ b/pkg/front_end/lib/src/fasta/kernel/kernel_class_builder.dart
@@ -39,9 +39,9 @@ abstract class KernelClassBuilder
String name, List<TypeVariableBuilder> typeVariables,
KernelTypeBuilder supertype, List<KernelTypeBuilder> interfaces,
Map<String, Builder> members, List<KernelTypeBuilder> types,
- LibraryBuilder parent)
+ LibraryBuilder parent, int charOffset)
: super(metadata, modifiers, name, typeVariables, supertype, interfaces,
- members, types, parent);
+ members, types, parent, charOffset);
Class get cls;
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/builder_accessors.dart ('k') | pkg/front_end/lib/src/fasta/kernel/kernel_enum_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698