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

Unified Diff: pkg/front_end/lib/src/fasta/kernel/verifier.dart

Issue 2736103004: Use correct types on cloned constructors in mixin applications. (Closed)
Patch Set: Update kompile.status. 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/kernel/verifier.dart
diff --git a/pkg/front_end/lib/src/fasta/kernel/verifier.dart b/pkg/front_end/lib/src/fasta/kernel/verifier.dart
index b1bab551b3ab92baf91c3d6a14bb00e41d650681..e95cfe69f0dbd71279f1644ab9431913be561f60 100644
--- a/pkg/front_end/lib/src/fasta/kernel/verifier.dart
+++ b/pkg/front_end/lib/src/fasta/kernel/verifier.dart
@@ -42,10 +42,6 @@ class FastaVerifyingVisitor extends VerifyingVisitor {
@override
problem(TreeNode node, String details) {
- // TODO(karlklose): Remove this when underlying problem is fixed.
- if (details.startsWith("Type parameter 'dart.collection::MapView::")) {
- return;
- }
VerificationError error = new VerificationError(context, node, details);
printUnexpected(Uri.parse(fileUri), node.fileOffset, "$error");
errors.add(error);
« no previous file with comments | « pkg/front_end/lib/src/fasta/kernel/kernel_type_variable_builder.dart ('k') | pkg/front_end/test/fasta/bootstrap_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698