Index: tests/compiler/dart2js/message_kind_test.dart |
diff --git a/tests/compiler/dart2js/message_kind_test.dart b/tests/compiler/dart2js/message_kind_test.dart |
index c4b45377f8070e06a1684cf939033ae7b4e1dd09..c397ede1976b822bb03c5a40ad45a3ba1e36dccb 100644 |
--- a/tests/compiler/dart2js/message_kind_test.dart |
+++ b/tests/compiler/dart2js/message_kind_test.dart |
@@ -34,7 +34,16 @@ main(List<String> arguments) { |
|| |
name == 'UNUSED_METHOD' || |
name == 'UNUSED_CLASS' || |
- name == 'UNUSED_TYPEDEF') continue; |
+ name == 'UNUSED_TYPEDEF' || |
+ |
+ // Fasta no longer generates EXTRANEOUS_MODIFIER_REPLACE. |
+ name == 'EXTRANEOUS_MODIFIER_REPLACE' || |
+ |
+ // Fasta just reports EXTRANEOUS_MODIFIER. |
+ name == 'FORMAL_DECLARED_STATIC' || |
+ |
+ // Additional warning from dart2js. |
+ name == 'VOID_NOT_ALLOWED') continue; |
if (template.examples != null) { |
examples.add(template); |
} else { |