| OLD | NEW |
| 1 dart.library('dart/_interceptors', null, /* Imports */[ | 1 loader.library('dart/_interceptors', null, /* Imports */[ |
| 2 "dart/dart_runtime", |
| 3 "dart/dartx", |
| 2 'dart/core', | 4 'dart/core', |
| 3 'dart/_internal', | 5 'dart/_internal', |
| 4 'dart/collection', | 6 'dart/collection', |
| 5 'dart/math' | 7 'dart/math' |
| 6 ], /* Lazy imports */[ | 8 ], /* Lazy imports */[ |
| 7 'dart/_js_helper' | 9 'dart/_js_helper' |
| 8 ], function(exports, core, _internal, collection, math, _js_helper) { | 10 ], function(exports, dart, dartx, core, _internal, collection, math, _js_helper)
{ |
| 9 'use strict'; | 11 'use strict'; |
| 10 let JSArray$ = dart.generic(function(E) { | 12 let JSArray$ = dart.generic(function(E) { |
| 11 dart.defineExtensionNames([ | 13 dart.defineExtensionNames([ |
| 12 'checkGrowable', | 14 'checkGrowable', |
| 13 'add', | 15 'add', |
| 14 'removeAt', | 16 'removeAt', |
| 15 'insert', | 17 'insert', |
| 16 'insertAll', | 18 'insertAll', |
| 17 'setAll', | 19 'setAll', |
| 18 'removeLast', | 20 'removeLast', |
| (...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1589 exports.JSString = JSString; | 1591 exports.JSString = JSString; |
| 1590 exports.getInterceptor = getInterceptor; | 1592 exports.getInterceptor = getInterceptor; |
| 1591 exports.JSBool = JSBool; | 1593 exports.JSBool = JSBool; |
| 1592 exports.JSIndexable = JSIndexable; | 1594 exports.JSIndexable = JSIndexable; |
| 1593 exports.JSMutableIndexable = JSMutableIndexable; | 1595 exports.JSMutableIndexable = JSMutableIndexable; |
| 1594 exports.JSObject = JSObject; | 1596 exports.JSObject = JSObject; |
| 1595 exports.JavaScriptObject = JavaScriptObject; | 1597 exports.JavaScriptObject = JavaScriptObject; |
| 1596 exports.PlainJavaScriptObject = PlainJavaScriptObject; | 1598 exports.PlainJavaScriptObject = PlainJavaScriptObject; |
| 1597 exports.UnknownJavaScriptObject = UnknownJavaScriptObject; | 1599 exports.UnknownJavaScriptObject = UnknownJavaScriptObject; |
| 1598 }); | 1600 }); |
| OLD | NEW |