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

Unified Diff: pkg/front_end/lib/src/fasta/builder/dynamic_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
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/builder/type_builder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/lib/src/fasta/builder/dynamic_type_builder.dart
diff --git a/pkg/front_end/lib/src/fasta/builder/dynamic_type_builder.dart b/pkg/front_end/lib/src/fasta/builder/dynamic_type_builder.dart
index 5a74165a1b516a4efa1a48549a4798159b7126d5..3933e7c170a97d673dcf4766bc0b0e251bdffaf0 100644
--- a/pkg/front_end/lib/src/fasta/builder/dynamic_type_builder.dart
+++ b/pkg/front_end/lib/src/fasta/builder/dynamic_type_builder.dart
@@ -13,7 +13,9 @@ class DynamicTypeBuilder<T extends TypeBuilder, R>
DynamicTypeBuilder(this.type, LibraryBuilder compilationUnit, int charOffset)
: super(null, 0, "dynamic", compilationUnit, charOffset);
- R buildType(List<T> arguments) => type;
+ R buildType(LibraryBuilder library, List<T> arguments) => type;
- R buildTypesWithBuiltArguments(List<R> arguments) => type;
+ R buildTypesWithBuiltArguments(LibraryBuilder library, List<R> arguments) {
+ return type;
+ }
}
« no previous file with comments | « no previous file | pkg/front_end/lib/src/fasta/builder/type_builder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698