| Index: test/codegen/expect/collection/iterable_zip.js
|
| diff --git a/test/codegen/expect/collection/iterable_zip.js b/test/codegen/expect/collection/iterable_zip.js
|
| index f6500b0c7a3c71e0c90864244468fb87ed89e47b..ecd44bdb20b1cae3936f6e68eb57d831b45f5d12 100644
|
| --- a/test/codegen/expect/collection/iterable_zip.js
|
| +++ b/test/codegen/expect/collection/iterable_zip.js
|
| @@ -6,7 +6,7 @@ dart_library.library('collection/iterable_zip', null, /* Imports */[
|
| ], function(exports, dart, collection, core) {
|
| 'use strict';
|
| let dartx = dart.dartx;
|
| - let _iterables = Symbol('_iterables');
|
| + const _iterables = Symbol('_iterables');
|
| class IterableZip extends collection.IterableBase$(core.List) {
|
| IterableZip(iterables) {
|
| this[_iterables] = iterables;
|
| @@ -21,8 +21,8 @@ dart_library.library('collection/iterable_zip', null, /* Imports */[
|
| constructors: () => ({IterableZip: [IterableZip, [core.Iterable$(core.Iterable)]]})
|
| });
|
| dart.defineExtensionMembers(IterableZip, ['iterator']);
|
| - let _iterators = Symbol('_iterators');
|
| - let _current = Symbol('_current');
|
| + const _iterators = Symbol('_iterators');
|
| + const _current = Symbol('_current');
|
| class _IteratorZip extends core.Object {
|
| _IteratorZip(iterators) {
|
| this[_iterators] = dart.as(iterators, core.List$(core.Iterator));
|
|
|