OLD | NEW |
1 var _internal = dart.defineLibrary(_internal, {}); | 1 dart.defineLibrary('_internal'); |
2 var core = dart.import(core); | 2 dart.import('core'); |
3 var collection = dart.import(collection); | 3 dart.import('collection'); |
4 var math = dart.lazyImport(math); | 4 dart.lazyImport('math'); |
5 var _interceptors = dart.lazyImport(_interceptors); | 5 dart.lazyImport('_interceptors'); |
6 var _js_primitives = dart.lazyImport(_js_primitives); | 6 dart.lazyImport('_js_primitives'); |
7 (function(exports, core, collection, math, _interceptors, _js_primitives) { | 7 (function(exports, core, collection, math, _interceptors, _js_primitives) { |
8 'use strict'; | 8 'use strict'; |
9 class EfficientLength extends core.Object {} | 9 class EfficientLength extends core.Object {} |
10 let ListIterable$ = dart.generic(function(E) { | 10 let ListIterable$ = dart.generic(function(E) { |
11 class ListIterable extends collection.IterableBase$(E) { | 11 class ListIterable extends collection.IterableBase$(E) { |
12 ListIterable() { | 12 ListIterable() { |
13 super.IterableBase(); | 13 super.IterableBase(); |
14 } | 14 } |
15 get [core.$iterator]() { | 15 get [core.$iterator]() { |
16 return new (ListIterator$(E))(this); | 16 return new (ListIterator$(E))(this); |
(...skipping 2328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2345 exports.ReversedListIterable = ReversedListIterable; | 2345 exports.ReversedListIterable = ReversedListIterable; |
2346 exports.UnmodifiableListError = UnmodifiableListError; | 2346 exports.UnmodifiableListError = UnmodifiableListError; |
2347 exports.NonGrowableListError = NonGrowableListError; | 2347 exports.NonGrowableListError = NonGrowableListError; |
2348 exports.makeListFixedLength = makeListFixedLength; | 2348 exports.makeListFixedLength = makeListFixedLength; |
2349 exports.Lists = Lists; | 2349 exports.Lists = Lists; |
2350 exports.printToConsole = printToConsole; | 2350 exports.printToConsole = printToConsole; |
2351 exports.Sort = Sort; | 2351 exports.Sort = Sort; |
2352 exports.Symbol = Symbol; | 2352 exports.Symbol = Symbol; |
2353 exports.POWERS_OF_TEN = POWERS_OF_TEN; | 2353 exports.POWERS_OF_TEN = POWERS_OF_TEN; |
2354 })(_internal, core, collection, math, _interceptors, _js_primitives); | 2354 })(_internal, core, collection, math, _interceptors, _js_primitives); |
OLD | NEW |