| 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 | 4 |
| 5 library test.backend.invoker; | |
| 6 | |
| 7 import 'dart:async'; | 5 import 'dart:async'; |
| 8 | 6 |
| 9 import 'package:stack_trace/stack_trace.dart'; | 7 import 'package:stack_trace/stack_trace.dart'; |
| 10 | 8 |
| 11 import '../backend/group.dart'; | 9 import '../backend/group.dart'; |
| 12 import '../frontend/expect.dart'; | 10 import '../frontend/expect.dart'; |
| 13 import '../utils.dart'; | 11 import '../utils.dart'; |
| 14 import 'closed_exception.dart'; | 12 import 'closed_exception.dart'; |
| 15 import 'live_test.dart'; | 13 import 'live_test.dart'; |
| 16 import 'live_test_controller.dart'; | 14 import 'live_test_controller.dart'; |
| (...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 // outstanding callback counters at once. | 276 // outstanding callback counters at once. |
| 279 _counterKey: outstandingCallbacksForBody, | 277 _counterKey: outstandingCallbacksForBody, |
| 280 _closableKey: true | 278 _closableKey: true |
| 281 }, | 279 }, |
| 282 zoneSpecification: new ZoneSpecification( | 280 zoneSpecification: new ZoneSpecification( |
| 283 print: (self, parent, zone, line) => _controller.print(line)), | 281 print: (self, parent, zone, line) => _controller.print(line)), |
| 284 onError: _handleError); | 282 onError: _handleError); |
| 285 }); | 283 }); |
| 286 } | 284 } |
| 287 } | 285 } |
| OLD | NEW |