| OLD | NEW |
| 1 var isolate; | 1 var isolate; |
| 2 (function(isolate) { | 2 (function(exports) { |
| 3 'use strict'; | 3 'use strict'; |
| 4 class IsolateSpawnException extends dart.Object { | 4 class IsolateSpawnException extends dart.Object { |
| 5 IsolateSpawnException(message) { | 5 IsolateSpawnException(message) { |
| 6 this.message = message; | 6 this.message = message; |
| 7 } | 7 } |
| 8 toString() { | 8 toString() { |
| 9 return `IsolateSpawnException: ${this.message}`; | 9 return `IsolateSpawnException: ${this.message}`; |
| 10 } | 10 } |
| 11 } | 11 } |
| 12 class Isolate extends dart.Object { | 12 class Isolate extends dart.Object { |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 toString() { | 191 toString() { |
| 192 return this._trace; | 192 return this._trace; |
| 193 } | 193 } |
| 194 } | 194 } |
| 195 class Capability extends dart.Object { | 195 class Capability extends dart.Object { |
| 196 Capability() { | 196 Capability() { |
| 197 return new _isolate_helper.CapabilityImpl(); | 197 return new _isolate_helper.CapabilityImpl(); |
| 198 } | 198 } |
| 199 } | 199 } |
| 200 // Exports: | 200 // Exports: |
| 201 isolate.IsolateSpawnException = IsolateSpawnException; | 201 exports.IsolateSpawnException = IsolateSpawnException; |
| 202 isolate.Isolate = Isolate; | 202 exports.Isolate = Isolate; |
| 203 isolate.SendPort = SendPort; | 203 exports.SendPort = SendPort; |
| 204 isolate.ReceivePort = ReceivePort; | 204 exports.ReceivePort = ReceivePort; |
| 205 isolate.RawReceivePort = RawReceivePort; | 205 exports.RawReceivePort = RawReceivePort; |
| 206 isolate.RemoteError = RemoteError; | 206 exports.RemoteError = RemoteError; |
| 207 isolate.Capability = Capability; | 207 exports.Capability = Capability; |
| 208 })(isolate || (isolate = {})); | 208 })(isolate || (isolate = {})); |
| OLD | NEW |