Skip to content

Commit

Permalink
Address review
Browse files Browse the repository at this point in the history
  • Loading branch information
syg authored and ptomato committed Jul 11, 2024
1 parent e83a57d commit 1f7aad1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,22 @@ features: [Atomics.pause]
---*/

const values = [
true,
false,
null,
42.42,
-42.42,
NaN,
Infinity,
Symbol("foo"),
"bar",
"42",
/baz/,
42n,
{},
[],
function() {}
function() {},
{ valueOf() { return 42; } }
];

for (const v of values) {
Expand Down
2 changes: 1 addition & 1 deletion test/built-ins/Atomics/pause/returns-undefined.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const values = [
undefined,
42,
0,
0/-1,
-0,
Number.MAX_SAFE_INTEGER
];

Expand Down

0 comments on commit 1f7aad1

Please sign in to comment.