| OLD | NEW |
| 1 var isolate; | 1 var isolate, core, _isolate_helper, async; |
| 2 (function(exports) { | 2 (function(exports, core, _isolate_helper, async) { |
| 3 'use strict'; | 3 'use strict'; |
| 4 class Capability extends core.Object { | 4 class Capability extends core.Object { |
| 5 Capability() { | 5 Capability() { |
| 6 return new _isolate_helper.CapabilityImpl(); | 6 return new _isolate_helper.CapabilityImpl(); |
| 7 } | 7 } |
| 8 } | 8 } |
| 9 class IsolateSpawnException extends core.Object { | 9 class IsolateSpawnException extends core.Object { |
| 10 IsolateSpawnException(message) { | 10 IsolateSpawnException(message) { |
| 11 this.message = message; | 11 this.message = message; |
| 12 } | 12 } |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 } | 210 } |
| 211 _RemoteStackTrace[dart.implements] = () => [core.StackTrace]; | 211 _RemoteStackTrace[dart.implements] = () => [core.StackTrace]; |
| 212 // Exports: | 212 // Exports: |
| 213 exports.Capability = Capability; | 213 exports.Capability = Capability; |
| 214 exports.IsolateSpawnException = IsolateSpawnException; | 214 exports.IsolateSpawnException = IsolateSpawnException; |
| 215 exports.Isolate = Isolate; | 215 exports.Isolate = Isolate; |
| 216 exports.SendPort = SendPort; | 216 exports.SendPort = SendPort; |
| 217 exports.ReceivePort = ReceivePort; | 217 exports.ReceivePort = ReceivePort; |
| 218 exports.RawReceivePort = RawReceivePort; | 218 exports.RawReceivePort = RawReceivePort; |
| 219 exports.RemoteError = RemoteError; | 219 exports.RemoteError = RemoteError; |
| 220 })(isolate || (isolate = {})); | 220 })(isolate || (isolate = {}), core, _isolate_helper || (_isolate_helper = {}), a
sync); |
| OLD | NEW |