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

Unified Diff: runtime/tests/vm/dart/isolate_mirror_local_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 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 | « runtime/lib/immutable_map.dart ('k') | samples/markdown/html_renderer.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/tests/vm/dart/isolate_mirror_local_test.dart
diff --git a/runtime/tests/vm/dart/isolate_mirror_local_test.dart b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
index d5251f7f0d49341f502922429152ee098f36fcef..185e043e06aa6c20fed5887f47413c6a60f01c89 100644
--- a/runtime/tests/vm/dart/isolate_mirror_local_test.dart
+++ b/runtime/tests/vm/dart/isolate_mirror_local_test.dart
@@ -125,7 +125,7 @@ void testRootLibraryMirror(LibraryMirror lib_mirror) {
});
// Check that the members map is complete.
- List keys = lib_mirror.members.getKeys();
+ List keys = lib_mirror.members.keys;
sort(keys);
Expect.equals('['
'FuncType, '
@@ -162,7 +162,7 @@ void testRootLibraryMirror(LibraryMirror lib_mirror) {
'$keys');
// Check that the classes map is complete.
- keys = lib_mirror.classes.getKeys();
+ keys = lib_mirror.classes.keys;
sort(keys);
Expect.equals('['
'FuncType, '
@@ -174,7 +174,7 @@ void testRootLibraryMirror(LibraryMirror lib_mirror) {
'$keys');
// Check that the functions map is complete.
- keys = lib_mirror.functions.getKeys();
+ keys = lib_mirror.functions.keys;
sort(keys);
Expect.equals('['
'_stringCompare, '
@@ -200,17 +200,17 @@ void testRootLibraryMirror(LibraryMirror lib_mirror) {
'$keys');
// Check that the getters map is complete.
- keys = lib_mirror.getters.getKeys();
+ keys = lib_mirror.getters.keys;
sort(keys);
Expect.equals('[myVar]', '$keys');
// Check that the setters map is complete.
- keys = lib_mirror.setters.getKeys();
+ keys = lib_mirror.setters.keys;
sort(keys);
Expect.equals('[myVar=]', '$keys');
// Check that the variables map is complete.
- keys = lib_mirror.variables.getKeys();
+ keys = lib_mirror.variables.keys;
sort(keys);
Expect.equals('['
'exit_port, '
« no previous file with comments | « runtime/lib/immutable_map.dart ('k') | samples/markdown/html_renderer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698