| OLD | NEW |
| 1 dart_library.library('dart/isolate', null, /* Imports */[ | 1 dart_library.library('dart/isolate', null, /* Imports */[ |
| 2 "dart_runtime/dart", | 2 "dart/_runtime", |
| 3 'dart/core', | 3 'dart/core', |
| 4 'dart/async' | 4 'dart/async' |
| 5 ], /* Lazy imports */[ | 5 ], /* Lazy imports */[ |
| 6 'dart/_isolate_helper' | 6 'dart/_isolate_helper' |
| 7 ], function(exports, dart, core, async, _isolate_helper) { | 7 ], function(exports, dart, core, async, _isolate_helper) { |
| 8 'use strict'; | 8 'use strict'; |
| 9 let dartx = dart.dartx; | 9 let dartx = dart.dartx; |
| 10 class Capability extends core.Object { | 10 class Capability extends core.Object { |
| 11 static new() { | 11 static new() { |
| 12 return new _isolate_helper.CapabilityImpl(); | 12 return new _isolate_helper.CapabilityImpl(); |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 }); | 256 }); |
| 257 // Exports: | 257 // Exports: |
| 258 exports.Capability = Capability; | 258 exports.Capability = Capability; |
| 259 exports.IsolateSpawnException = IsolateSpawnException; | 259 exports.IsolateSpawnException = IsolateSpawnException; |
| 260 exports.Isolate = Isolate; | 260 exports.Isolate = Isolate; |
| 261 exports.SendPort = SendPort; | 261 exports.SendPort = SendPort; |
| 262 exports.ReceivePort = ReceivePort; | 262 exports.ReceivePort = ReceivePort; |
| 263 exports.RawReceivePort = RawReceivePort; | 263 exports.RawReceivePort = RawReceivePort; |
| 264 exports.RemoteError = RemoteError; | 264 exports.RemoteError = RemoteError; |
| 265 }); | 265 }); |
| OLD | NEW |