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

Unified Diff: runtime/observatory/test/eval_test.dart

Issue 1057333004: Continue improving the documentation for the vm service protocol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: code review Created 5 years, 8 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/observatory/test/coverage_test.dart ('k') | runtime/vm/debugger_api_impl_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/test/eval_test.dart
diff --git a/runtime/observatory/test/eval_test.dart b/runtime/observatory/test/eval_test.dart
index 447514fb889242572f8a5798b68a260299d76255..6db4151a84cdf2a0c06dc9a0718f63b5c88c3573 100644
--- a/runtime/observatory/test/eval_test.dart
+++ b/runtime/observatory/test/eval_test.dart
@@ -58,10 +58,10 @@ var tests = [
expect(stack.type, equals('Stack'));
expect(stack['frames'].length, greaterThanOrEqualTo(2));
expect(stack['frames'][0]['function'].name, equals('printValue'));
- expect(stack['frames'][0]['function'].owningClass.name, equals('MyClass'));
+ expect(stack['frames'][0]['function'].dartOwner.name, equals('MyClass'));
var lib = isolate.rootLib;
- var cls = stack['frames'][0]['function'].owningClass;
+ var cls = stack['frames'][0]['function'].dartOwner;
var instance = stack['frames'][0]['vars'][0]['value'];
List evals = [];
« no previous file with comments | « runtime/observatory/test/coverage_test.dart ('k') | runtime/vm/debugger_api_impl_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698