| OLD | NEW |
| 1 dart_library.library('collection/iterable_zip', null, /* Imports */[ | 1 dart_library.library('collection/iterable_zip', null, /* Imports */[ |
| 2 "dart/_runtime", | 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 const _iterables = Symbol('_iterables'); | 9 const _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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 } | 47 } |
| 48 } | 48 } |
| 49 _IteratorZip[dart.implements] = () => [core.Iterator$(core.List)]; | 49 _IteratorZip[dart.implements] = () => [core.Iterator$(core.List)]; |
| 50 dart.setSignature(_IteratorZip, { | 50 dart.setSignature(_IteratorZip, { |
| 51 constructors: () => ({_IteratorZip: [_IteratorZip, [core.List]]}), | 51 constructors: () => ({_IteratorZip: [_IteratorZip, [core.List]]}), |
| 52 methods: () => ({moveNext: [core.bool, []]}) | 52 methods: () => ({moveNext: [core.bool, []]}) |
| 53 }); | 53 }); |
| 54 // Exports: | 54 // Exports: |
| 55 exports.IterableZip = IterableZip; | 55 exports.IterableZip = IterableZip; |
| 56 }); | 56 }); |
| OLD | NEW |