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