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

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

Issue 2729943003: Recover from bad supertypes. (Closed)
Patch Set: Update status files. 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 4a913217e7248a7bac525f395941c2b8135b79b7..8f0065e421272af1f7ba936d70b368fb75e2476c 100644
--- a/pkg/front_end/lib/src/fasta/builder/type_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/type_builder.dart
@@ -4,7 +4,8 @@
library fasta.type_builder;
-import 'builder.dart' show Builder, TypeDeclarationBuilder, TypeVariableBuilder;
+import 'builder.dart'
+ show Builder, LibraryBuilder, TypeDeclarationBuilder, TypeVariableBuilder;
import 'scope.dart' show Scope;
@@ -27,5 +28,5 @@ abstract class TypeBuilder extends Builder {
TypeBuilder subst(Map<TypeVariableBuilder, TypeBuilder> substitution) => this;
- build();
+ build(LibraryBuilder library);
}

Powered by Google App Engine
This is Rietveld 408576698