| 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 --verbos
e_debug | 4 // VMOptions=--error_on_bad_type --error_on_bad_override --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 import 'dart:developer'; | 9 import 'dart:developer'; |
| 10 | 10 |
| 11 testFunction(flag) { // Line 11 | 11 testFunction(flag) { // Line 11 |
| 12 if (flag) { | 12 if (flag) { |
| 13 print("Yes"); | 13 print("Yes"); |
| 14 } else { | 14 } else { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 43 stoppedAtLine(11), | 43 stoppedAtLine(11), |
| 44 resumeIsolate, | 44 resumeIsolate, |
| 45 | 45 |
| 46 hasStoppedAtBreakpoint, | 46 hasStoppedAtBreakpoint, |
| 47 stoppedAtLine(11), | 47 stoppedAtLine(11), |
| 48 resumeIsolate, | 48 resumeIsolate, |
| 49 | 49 |
| 50 ]; | 50 ]; |
| 51 | 51 |
| 52 main(args) => runIsolateTests(args, tests, testeeConcurrent: testMain); | 52 main(args) => runIsolateTests(args, tests, testeeConcurrent: testMain); |
| OLD | NEW |