| OLD | NEW |
| 1 dart_library.library('collection/iterable_zip', null, /* Imports */[ | 1 dart_library.library('collection/iterable_zip', null, /* Imports */[ |
| 2 "dart_runtime/dart", | 2 "dart/_runtime", |
| 3 'dart/collection', | 3 'dart/collection', |
| 4 'dart/core' | 4 'dart/core' |
| 5 ], /* Lazy imports */[ | 5 ], /* Lazy imports */[ |
| 6 ], function(exports, dart, collection, core) { | 6 ], function(exports, dart, collection, core) { |
| 7 'use strict'; | 7 'use strict'; |
| 8 let dartx = dart.dartx; | 8 let dartx = dart.dartx; |
| 9 let _iterables = Symbol('_iterables'); | 9 let _iterables = Symbol('_iterables'); |
| 10 class IterableZip extends collection.IterableBase$(core.List) { | 10 class IterableZip extends collection.IterableBase$(core.List) { |
| 11 IterableZip(iterables) { | 11 IterableZip(iterables) { |
| 12 this[_iterables] = iterables; | 12 this[_iterables] = iterables; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 } | 48 } |
| 49 } | 49 } |
| 50 _IteratorZip[dart.implements] = () => [core.Iterator$(core.List)]; | 50 _IteratorZip[dart.implements] = () => [core.Iterator$(core.List)]; |
| 51 dart.setSignature(_IteratorZip, { | 51 dart.setSignature(_IteratorZip, { |
| 52 constructors: () => ({_IteratorZip: [_IteratorZip, [core.List]]}), | 52 constructors: () => ({_IteratorZip: [_IteratorZip, [core.List]]}), |
| 53 methods: () => ({moveNext: [core.bool, []]}) | 53 methods: () => ({moveNext: [core.bool, []]}) |
| 54 }); | 54 }); |
| 55 // Exports: | 55 // Exports: |
| 56 exports.IterableZip = IterableZip; | 56 exports.IterableZip = IterableZip; |
| 57 }); | 57 }); |
| OLD | NEW |