| 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
--verbose-debug | 4 // VMOptions=--compile-all --error_on_bad_type --error_on_bad_override --checked
--verbose-debug |
| 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 | 9 |
| 10 printSync() { // Line 10 | 10 printSync() { // Line 10 |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 if (hits.length == 5) break; | 79 if (hits.length == 5) break; |
| 80 } | 80 } |
| 81 } | 81 } |
| 82 | 82 |
| 83 expect(hits, equals([bp1, bp5, bp4, bp2, bp3])); | 83 expect(hits, equals([bp1, bp5, bp4, bp2, bp3])); |
| 84 } | 84 } |
| 85 | 85 |
| 86 var tests = [testAsync]; | 86 var tests = [testAsync]; |
| 87 | 87 |
| 88 main(args) => runIsolateTests(args, tests, testeeConcurrent: testeeDo); | 88 main(args) => runIsolateTests(args, tests, testeeConcurrent: testeeDo); |
| OLD | NEW |