Skip to content

Commit

Permalink
Add missing test case
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Aug 29, 2024
1 parent 95953b7 commit 2f8150a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,5 @@ for (;a = {b: b in c};);
for (;a = (x = b in c) => {};);
for (;a = class extends (b in c) {};);
for (;a = function (x = b in c) {};);

for (var a = (b = c) || (d in e);;);
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ for (; a = {
};);
for (; a = (x = b in c) => {};);
for (; a = class extends (b in c) {};);
for (; a = function (x = b in c) {};);
for (; a = function (x = b in c) {};);
for (var a = (b = c) || (d in e);;);

0 comments on commit 2f8150a

Please sign in to comment.