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