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

Unified Diff: tests/language/temp_mangling_test.dart

Issue 11238035: Make isEmpty a getter. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file with co19 issue number. Created 8 years, 2 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/language/string_intrinsics_test.dart ('k') | tests/standalone/io/directory_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/temp_mangling_test.dart
diff --git a/tests/language/temp_mangling_test.dart b/tests/language/temp_mangling_test.dart
index 279dc4e66db60aa29433410a4ac522aa3aa7f247..3031891ba62df7b7a13aabe7469cfc3b6d60589d 100644
--- a/tests/language/temp_mangling_test.dart
+++ b/tests/language/temp_mangling_test.dart
@@ -24,7 +24,7 @@ testTwo() {
// This used to introduce x_0.
var x = new Set();
Expect.equals(0, x.length);
- Expect.isTrue(x.isEmpty());
+ Expect.isTrue(x.isEmpty);
}
Expect.isTrue(x is List);
Expect.isTrue(x_0 is List);
« no previous file with comments | « tests/language/string_intrinsics_test.dart ('k') | tests/standalone/io/directory_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698