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

Unified Diff: samples/tests/samples/lib/layout/layout_test.dart

Issue 11267018: Make getKeys, getValues getters (keys, values). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status files. 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
Index: samples/tests/samples/lib/layout/layout_test.dart
diff --git a/samples/tests/samples/lib/layout/layout_test.dart b/samples/tests/samples/lib/layout/layout_test.dart
index e375d20931ae840e7bc20b17c18643ad58308a33..a65b462b70470a5ce48aef731d4a5be2c6b480c4 100644
--- a/samples/tests/samples/lib/layout/layout_test.dart
+++ b/samples/tests/samples/lib/layout/layout_test.dart
@@ -168,7 +168,7 @@ verifyGrid(String example, [Map expected = null]) {
return;
}
- for (String name in expected.getKeys()) {
+ for (String name in expected.keys) {
final values = expected[name];
final node = document.body.query('#$name');
Expect.isNotNull(node);

Powered by Google App Engine
This is Rietveld 408576698