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

Unified Diff: tests/compiler/dart2js/message_kind_test.dart

Issue 2876813002: Implement generalized function types. (Closed)
Patch Set: Address comments. Created 3 years, 7 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 | « tests/compiler/dart2js/dump_info_test.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « tests/compiler/dart2js/dump_info_test.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698