| 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 dart._vmservice; | 5 library dart._vmservice; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:convert'; | 8 import 'dart:convert'; |
| 9 import 'dart:isolate'; | 9 import 'dart:isolate'; |
| 10 import 'dart:typed_data'; | 10 import 'dart:typed_data'; |
| 11 | 11 |
| 12 part 'asset.dart'; |
| 12 part 'client.dart'; | 13 part 'client.dart'; |
| 13 part 'constants.dart'; | 14 part 'constants.dart'; |
| 14 part 'running_isolate.dart'; | 15 part 'running_isolate.dart'; |
| 15 part 'running_isolates.dart'; | 16 part 'running_isolates.dart'; |
| 16 part 'message.dart'; | 17 part 'message.dart'; |
| 17 part 'message_router.dart'; | 18 part 'message_router.dart'; |
| 18 | 19 |
| 19 final RawReceivePort isolateLifecyclePort = new RawReceivePort(); | 20 final RawReceivePort isolateLifecyclePort = new RawReceivePort(); |
| 20 final RawReceivePort scriptLoadPort = new RawReceivePort(); | 21 final RawReceivePort scriptLoadPort = new RawReceivePort(); |
| 21 | 22 |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 } | 323 } |
| 323 | 324 |
| 324 external void _onStart(); | 325 external void _onStart(); |
| 325 | 326 |
| 326 external void _onExit(); | 327 external void _onExit(); |
| 327 | 328 |
| 328 external bool _vmListenStream(String streamId); | 329 external bool _vmListenStream(String streamId); |
| 329 | 330 |
| 330 external void _vmCancelStream(String streamId); | 331 external void _vmCancelStream(String streamId); |
| 331 | 332 |
| 333 external Uint8List _requestAssets(); |
| OLD | NEW |