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