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