OLD | NEW |
1 var _interceptors = dart.defineLibrary(_interceptors, {}); | 1 dart.library('dart/_interceptors', null, /* Imports */[ |
2 var core = dart.import(core); | 2 'dart/core', |
3 var _internal = dart.import(_internal); | 3 'dart/_internal', |
4 var _js_helper = dart.lazyImport(_js_helper); | 4 'dart/collection', |
5 var collection = dart.import(collection); | 5 'dart/math' |
6 var math = dart.import(math); | 6 ], /* Lazy imports */[ |
7 (function(exports, core, _internal, _js_helper, collection, math) { | 7 'dart/_js_helper' |
| 8 ], function(exports, core, _internal, collection, math, _js_helper) { |
8 'use strict'; | 9 'use strict'; |
9 let JSArray$ = dart.generic(function(E) { | 10 let JSArray$ = dart.generic(function(E) { |
10 class JSArray extends core.Object { | 11 class JSArray extends core.Object { |
11 JSArray() { | 12 JSArray() { |
12 } | 13 } |
13 static typed(allocation) { | 14 static typed(allocation) { |
14 return dart.list(allocation, E); | 15 return dart.list(allocation, E); |
15 } | 16 } |
16 static markFixed(allocation) { | 17 static markFixed(allocation) { |
17 return JSArray$(E).typed(JSArray$().markFixedList(dart.as(allocation, co
re.List))); | 18 return JSArray$(E).typed(JSArray$().markFixedList(dart.as(allocation, co
re.List))); |
(...skipping 1410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1428 exports.JSUInt31 = JSUInt31; | 1429 exports.JSUInt31 = JSUInt31; |
1429 exports.JSString = JSString; | 1430 exports.JSString = JSString; |
1430 exports.getInterceptor = getInterceptor; | 1431 exports.getInterceptor = getInterceptor; |
1431 exports.JSBool = JSBool; | 1432 exports.JSBool = JSBool; |
1432 exports.JSIndexable = JSIndexable; | 1433 exports.JSIndexable = JSIndexable; |
1433 exports.JSMutableIndexable = JSMutableIndexable; | 1434 exports.JSMutableIndexable = JSMutableIndexable; |
1434 exports.JSObject = JSObject; | 1435 exports.JSObject = JSObject; |
1435 exports.JavaScriptObject = JavaScriptObject; | 1436 exports.JavaScriptObject = JavaScriptObject; |
1436 exports.PlainJavaScriptObject = PlainJavaScriptObject; | 1437 exports.PlainJavaScriptObject = PlainJavaScriptObject; |
1437 exports.UnknownJavaScriptObject = UnknownJavaScriptObject; | 1438 exports.UnknownJavaScriptObject = UnknownJavaScriptObject; |
1438 })(_interceptors, core, _internal, _js_helper, collection, math); | 1439 }); |
OLD | NEW |