Skip to content

Commit

Permalink
fix effect-in-for-of-loop test
Browse files Browse the repository at this point in the history
  • Loading branch information
imatlopez committed Sep 26, 2019
1 parent 5119221 commit 549216c
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/form/samples/effect-in-for-of-loop/main.js
Expand Up @@ -4,20 +4,11 @@ for ( const a of items ) {
a.foo = 'a';
}

for ( const b of items ) {
// do nothing
}

let c;
for ( c of items ) {
c.bar = 'c';
}

let d;
for ( d of items ) {
// do nothing
}

for ( e of items ) {
e.baz = 'e';
}
Expand Down

0 comments on commit 549216c

Please sign in to comment.