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

Unified Diff: pkg/front_end/lib/src/fasta/builder/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 side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart b/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart
index 6f6cbb79ec038c5e70bfb65508d88fe13e988a5d..e7b319693bbe1ea379aa35bdf6dd679f58009781 100644
--- a/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/mixin_application_builder.dart
@@ -19,7 +19,9 @@ abstract class MixinApplicationBuilder<T extends TypeBuilder>
final T supertype;
final List<T> mixins;
- MixinApplicationBuilder(this.supertype, this.mixins);
+ MixinApplicationBuilder(this.supertype, this.mixins, int charOffset,
+ Uri fileUri)
+ : super(charOffset, fileUri);
String get name => null;
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/mixed_accessor.dart ('k') | pkg/front_end/lib/src/fasta/builder/modifier_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698