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

Unified Diff: pkg/front_end/lib/src/fasta/builder/builder.dart

Issue 2759173002: Switch to IdentifierContext. (Closed)
Patch Set: Status file. Created 3 years, 9 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/builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/builder.dart b/pkg/front_end/lib/src/fasta/builder/builder.dart
index f2349136dc1dcfdf5964e470a955867a8788db59..02df166cb1ec6a2ca6ac37bdc606a145da874e57 100644
--- a/pkg/front_end/lib/src/fasta/builder/builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/builder.dart
@@ -52,8 +52,12 @@ export 'mixed_accessor.dart' show MixedAccessor;
export 'scope.dart' show AccessErrorBuilder;
+export 'builtin_type_builder.dart' show BuiltinTypeBuilder;
+
export 'dynamic_type_builder.dart' show DynamicTypeBuilder;
+export 'void_type_builder.dart' show VoidTypeBuilder;
+
export 'function_type_builder.dart' show FunctionTypeBuilder;
import 'library_builder.dart' show LibraryBuilder;
@@ -168,6 +172,8 @@ abstract class Builder {
bool get hasProblem => false;
+ String get fullNameForErrors;
+
static Uri getUri(Builder builder) {
if (builder == null) return internalError("Builder is null.");
while (builder != null) {
« no previous file with comments | « pkg/compiler/lib/src/parser/node_listener.dart ('k') | pkg/front_end/lib/src/fasta/builder/class_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698