Skip to content

Commit 0693cc7

Browse files
committed
Update baselines
1 parent 721ed5c commit 0693cc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/baselines/reference/es2024SharedMemory.types

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ const int64 = new BigInt64Array(sab64);
6262
> : ^^^^^^^^^^^^^^^^^
6363

6464
const waitValue = Atomics.wait(int32, 0, 0);
65-
>waitValue : "ok" | "not-equal" | "timed-out"
65+
>waitValue : "not-equal" | "ok" | "timed-out"
6666
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
67-
>Atomics.wait(int32, 0, 0) : "ok" | "not-equal" | "timed-out"
67+
>Atomics.wait(int32, 0, 0) : "not-equal" | "ok" | "timed-out"
6868
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6969
>Atomics.wait : { (typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out"; (typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): "ok" | "not-equal" | "timed-out"; }
7070
> : ^^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^ ^^^ ^^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^ ^^^ ^^^

0 commit comments

Comments
 (0)