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

Unified Diff: pkg/front_end/lib/src/fasta/builder/type_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_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/type_builder.dart b/pkg/front_end/lib/src/fasta/builder/type_builder.dart
index 9f6516f905925df551651d6b554ad421a5bf0b9d..24b8f0c6a66eee83a64c327d714b38c43e45cc90 100644
--- a/pkg/front_end/lib/src/fasta/builder/type_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/type_builder.dart
@@ -14,6 +14,9 @@ import 'scope.dart' show
// TODO(ahe): Make const class.
abstract class TypeBuilder extends Builder {
+ TypeBuilder(int charOffset, Uri fileUri)
+ : super(null, charOffset, fileUri);
+
void resolveIn(Scope scope);
void bind(TypeDeclarationBuilder builder);
« no previous file with comments | « pkg/front_end/lib/src/fasta/builder/scope.dart ('k') | pkg/front_end/lib/src/fasta/builder/type_declaration_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698