OLD | NEW |
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 Loading... |
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 Loading... |
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); |
OLD | NEW |