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