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

Unified Diff: tests/standalone/vmservice/isolate_class_test.dart

Issue 82793004: Add field and function view for libraries. Rough cut. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 1 month 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
« runtime/vm/object_id_ring.cc ('K') | « runtime/vm/object_id_ring.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/vmservice/isolate_class_test.dart
===================================================================
--- tests/standalone/vmservice/isolate_class_test.dart (revision 30547)
+++ tests/standalone/vmservice/isolate_class_test.dart (working copy)
@@ -28,10 +28,10 @@
onRequestCompleted(Map reply) {
Expect.equals('Library', reply['type']);
Expect.equals('isolate_stacktrace_command_script', reply['name']);
- Expect.equals(2, reply['classes'].length);
- Expect.equals('@Class', reply['classes'][1]['type']);
- Expect.equals('C', reply['classes'][1]['name']);
- _classId = reply['classes'][1]['id'];
+ Expect.equals(1, reply['classes'].length);
+ Expect.equals('@Class', reply['classes'][0]['type']);
+ Expect.equals('C', reply['classes'][0]['name']);
+ _classId = reply['classes'][0]['id'];
}
}
« runtime/vm/object_id_ring.cc ('K') | « runtime/vm/object_id_ring.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698