| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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=--error_on_bad_type --error_on_bad_override | 4 // VMOptions=--error_on_bad_type --error_on_bad_override --async_debugger |
| 5 | 5 |
| 6 import 'package:observatory/service_io.dart'; | 6 import 'package:observatory/service_io.dart'; |
| 7 import 'package:observatory/models.dart' as M; | 7 import 'package:observatory/models.dart' as M; |
| 8 import 'package:unittest/unittest.dart'; | 8 import 'package:unittest/unittest.dart'; |
| 9 import 'test_helper.dart'; | 9 import 'test_helper.dart'; |
| 10 import 'service_test_common.dart'; | 10 import 'service_test_common.dart'; |
| 11 | 11 |
| 12 const LINE_A = 34; | 12 const LINE_A = 34; |
| 13 | 13 |
| 14 class Foo {} | 14 class Foo {} |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 expect(asyncStack[2].kind, equals(M.FrameKind.asyncSuspensionMarker)); | 48 expect(asyncStack[2].kind, equals(M.FrameKind.asyncSuspensionMarker)); |
| 49 expect(asyncStack[3].toString(), contains('testeeMain')); | 49 expect(asyncStack[3].toString(), contains('testeeMain')); |
| 50 // We've stopped at LINE_A. | 50 // We've stopped at LINE_A. |
| 51 expect( | 51 expect( |
| 52 await asyncStack[3].location.toUserString(), contains('.dart:$LINE_A')); | 52 await asyncStack[3].location.toUserString(), contains('.dart:$LINE_A')); |
| 53 } | 53 } |
| 54 ]; | 54 ]; |
| 55 | 55 |
| 56 main(args) => runIsolateTests(args, tests, | 56 main(args) => runIsolateTests(args, tests, |
| 57 pause_on_unhandled_exceptions: true, testeeConcurrent: testeeMain); | 57 pause_on_unhandled_exceptions: true, testeeConcurrent: testeeMain); |
| OLD | NEW |