mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
241 B
16 lines
241 B
const items = [{}, {}, {}];
|
|
|
|
for ( const a of items.children ) {
|
|
a.foo = 'a';
|
|
}
|
|
|
|
let c;
|
|
for ( c of items.children ) {
|
|
c.bar = 'c';
|
|
}
|
|
|
|
assert.deepEqual( items, [
|
|
{ foo: 'a', bar: 'c' },
|
|
{ foo: 'a', bar: 'c' },
|
|
{ foo: 'a', bar: 'c' }
|
|
]);
|
|
|