OLD | NEW |
1 var _js_helper = dart.defineLibrary(_js_helper, {}); | 1 dart.library('dart/_js_helper', null, /* Imports */[ |
2 var core = dart.import(core); | 2 'dart/core', |
3 var collection = dart.import(collection); | 3 'dart/collection', |
4 var _interceptors = dart.lazyImport(_interceptors); | 4 'dart/_foreign_helper' |
5 var _foreign_helper = dart.import(_foreign_helper); | 5 ], /* Lazy imports */[ |
6 (function(exports, core, collection, _interceptors, _foreign_helper) { | 6 'dart/_interceptors' |
| 7 ], function(exports, core, collection, _foreign_helper, _interceptors) { |
7 'use strict'; | 8 'use strict'; |
8 class NoThrows extends core.Object { | 9 class NoThrows extends core.Object { |
9 NoThrows() { | 10 NoThrows() { |
10 } | 11 } |
11 } | 12 } |
12 dart.setSignature(NoThrows, { | 13 dart.setSignature(NoThrows, { |
13 constructors: () => ({NoThrows: [NoThrows, []]}) | 14 constructors: () => ({NoThrows: [NoThrows, []]}) |
14 }); | 15 }); |
15 class NoInline extends core.Object { | 16 class NoInline extends core.Object { |
16 NoInline() { | 17 NoInline() { |
(...skipping 1177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1194 exports.getFallThroughError = getFallThroughError; | 1195 exports.getFallThroughError = getFallThroughError; |
1195 exports.Creates = Creates; | 1196 exports.Creates = Creates; |
1196 exports.Returns = Returns; | 1197 exports.Returns = Returns; |
1197 exports.JSName = JSName; | 1198 exports.JSName = JSName; |
1198 exports.TypeErrorImplementation = TypeErrorImplementation; | 1199 exports.TypeErrorImplementation = TypeErrorImplementation; |
1199 exports.CastErrorImplementation = CastErrorImplementation; | 1200 exports.CastErrorImplementation = CastErrorImplementation; |
1200 exports.FallThroughErrorImplementation = FallThroughErrorImplementation; | 1201 exports.FallThroughErrorImplementation = FallThroughErrorImplementation; |
1201 exports.RuntimeError = RuntimeError; | 1202 exports.RuntimeError = RuntimeError; |
1202 exports.random64 = random64; | 1203 exports.random64 = random64; |
1203 exports.jsonEncodeNative = jsonEncodeNative; | 1204 exports.jsonEncodeNative = jsonEncodeNative; |
1204 })(_js_helper, core, collection, _interceptors, _foreign_helper); | 1205 }); |
OLD | NEW |