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

Unified Diff: pkg/front_end/lib/src/fasta/builder/function_type_alias_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/function_type_alias_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/function_type_alias_builder.dart b/pkg/front_end/lib/src/fasta/builder/function_type_alias_builder.dart
index 04a844f4aa4c88e90958d9e389782b3afe9c0d39..8a6088a450bf1e10385092b0f6d55e63db9ec24b 100644
--- a/pkg/front_end/lib/src/fasta/builder/function_type_alias_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/function_type_alias_builder.dart
@@ -26,8 +26,8 @@ abstract class FunctionTypeAliasBuilder<T extends TypeBuilder, R>
FunctionTypeAliasBuilder(
List<MetadataBuilder> metadata, this.returnType,
String name, this.typeVariables, this.formals, List<T> types,
- LibraryBuilder parent)
- : super(metadata, null, name, types, parent);
+ LibraryBuilder parent, int charOffset)
+ : super(metadata, null, name, types, parent, charOffset);
LibraryBuilder get parent => super.parent;

Powered by Google App Engine
This is Rietveld 408576698