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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override --checked 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override --checked
5 5
6 import 'package:observatory/service_io.dart'; 6 import 'package:observatory/service_io.dart';
7 import 'package:unittest/unittest.dart'; 7 import 'package:unittest/unittest.dart';
8 import 'test_helper.dart'; 8 import 'test_helper.dart';
9 import 'dart:async'; 9 import 'dart:async';
10 10
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 }); 51 });
52 }, 52 },
53 53
54 // Evaluate against library, class, and instance. 54 // Evaluate against library, class, and instance.
55 (Isolate isolate) { 55 (Isolate isolate) {
56 return isolate.getStack().then((ServiceMap stack) { 56 return isolate.getStack().then((ServiceMap stack) {
57 // Make sure we are in the right place. 57 // Make sure we are in the right place.
58 expect(stack.type, equals('Stack')); 58 expect(stack.type, equals('Stack'));
59 expect(stack['frames'].length, greaterThanOrEqualTo(2)); 59 expect(stack['frames'].length, greaterThanOrEqualTo(2));
60 expect(stack['frames'][0]['function'].name, equals('printValue')); 60 expect(stack['frames'][0]['function'].name, equals('printValue'));
61 expect(stack['frames'][0]['function'].owningClass.name, equals('MyClass')) ; 61 expect(stack['frames'][0]['function'].dartOwner.name, equals('MyClass'));
62 62
63 var lib = isolate.rootLib; 63 var lib = isolate.rootLib;
64 var cls = stack['frames'][0]['function'].owningClass; 64 var cls = stack['frames'][0]['function'].dartOwner;
65 var instance = stack['frames'][0]['vars'][0]['value']; 65 var instance = stack['frames'][0]['vars'][0]['value'];
66 66
67 List evals = []; 67 List evals = [];
68 evals.add(isolate.eval(lib, 'globalVar + 5').then((result) { 68 evals.add(isolate.eval(lib, 'globalVar + 5').then((result) {
69 print(result); 69 print(result);
70 expect(result.valueAsString, equals('105')); 70 expect(result.valueAsString, equals('105'));
71 })); 71 }));
72 evals.add(isolate.eval(lib, 'globalVar + staticVar + 5').then((result) { 72 evals.add(isolate.eval(lib, 'globalVar + staticVar + 5').then((result) {
73 expect(result.type, equals('Error')); 73 expect(result.type, equals('Error'));
74 })); 74 }));
(...skipping 11 matching lines...) Expand all
86 evals.add(isolate.eval(instance, 'this + frog').then((result) { 86 evals.add(isolate.eval(instance, 'this + frog').then((result) {
87 expect(result.type, equals('Error')); 87 expect(result.type, equals('Error'));
88 })); 88 }));
89 return Future.wait(evals); 89 return Future.wait(evals);
90 }); 90 });
91 }, 91 },
92 92
93 ]; 93 ];
94 94
95 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction); 95 main(args) => runIsolateTests(args, tests, testeeConcurrent: testFunction);
OLDNEW
« 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