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

Unified Diff: tests/language_strong/no_such_method_native_test.dart

Issue 2962263002: fix #30030, fix #27327 - fix tearoffs and various Object member bugs (Closed)
Patch Set: Created 3 years, 6 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: tests/language_strong/no_such_method_native_test.dart
diff --git a/tests/language_strong/no_such_method_native_test.dart b/tests/language_strong/no_such_method_native_test.dart
index 2ef97c00007361932a80473c5bee5b5338e333c9..0761ec64d5c11082b52d1a7e64c61af83e014c95 100644
--- a/tests/language_strong/no_such_method_native_test.dart
+++ b/tests/language_strong/no_such_method_native_test.dart
@@ -30,7 +30,6 @@ main() {
expectNSME(null);
expectNSME(777);
expectNSME('hello');
- // These fail because of https://github.com/dart-lang/dev_compiler/issues/592.
- // expectNSME([]);
- // expectNSME(['a', 'b', 'c']);
+ expectNSME([]);
+ expectNSME(<String>['a', 'b', 'c']);
}

Powered by Google App Engine
This is Rietveld 408576698