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

Unified Diff: pkg/front_end/lib/src/fasta/builder/type_variable_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/type_variable_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart b/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
index 2408441ebc309790ab342c4bafbacd756f0e592d..36c98968ed0d13a5b062b0c80a1650644e3493f6 100644
--- a/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/type_variable_builder.dart
@@ -5,6 +5,7 @@
library fasta.type_variable_builder;
import 'builder.dart' show
+ LibraryBuilder,
TypeBuilder,
TypeDeclarationBuilder;
@@ -12,8 +13,9 @@ abstract class TypeVariableBuilder<T extends TypeBuilder, R>
extends TypeDeclarationBuilder<T, R> {
T bound;
- TypeVariableBuilder(String name, this.bound)
- : super(null, null, name, null, null);
+ TypeVariableBuilder(String name, this.bound, LibraryBuilder compilationUnit,
+ int charOffset)
+ : super(null, null, name, null, compilationUnit, charOffset);
String get debugName => "TypeVariableBuilder";
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart ('k') | pkg/front_end/lib/src/fasta/combinator.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698