// |reftest| skip-if(!xulRuntime.shell) /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * Any copyright is dedicated to the Public Domain. * http://creativecommons.org/licenses/publicdomain/
*/
if (this.SharedArrayBuffer && this.Atomics) {
// Checks for parameter validation of wait/wake API. All of these test // cases should throw exceptions during parameter validation, before // we check whether any waiting should be done.
let ab = new ArrayBuffer(16);
let sab = new SharedArrayBuffer(16);
////////////////////////////////////////////////////////////////////// // // The view must be an Int32Array on a SharedArrayBuffer.
// Check against non-TypedArray cases.
{
let values = [null,
undefined, true, false, newBoolean(true), 10, 3.14, new Number(4), "Hi there", new Date,
/a*utomaton/g,
{ password: "qumquat" }, new DataView(new ArrayBuffer(10)), new ArrayBuffer(128), new SharedArrayBuffer(128), new Error("Ouch"),
[1,1,2,3,5,8],
((x) => -x), new Map(), new Set(), new WeakMap(), new WeakSet(), new Promise(() => "done"),
Symbol("halleluja"), // TODO: Proxy?
Object,
Int32Array,
Date,
Math,
Atomics ];
for ( let i=0 ; i < values.length ; i++ ) {
let view = values[i];
assertThrowsInstanceOf(() => Atomics.wait(view, 0, 0), TypeError);
assertThrowsInstanceOf(() => Atomics.wake(view, 0), TypeError);
}
}
// Check against TypedArray on non-shared memory and wrong view types cases.
for ( let iidx=0 ; iidx < indices.length ; iidx++ ) {
let Idx = indices[iidx](view);
assertThrowsInstanceOf(() => Atomics.wait(view, Idx, 10), RangeError);
assertThrowsInstanceOf(() => Atomics.wake(view, Idx), RangeError);
}
}
} // if (this.SharedArrayBuffer && this.Atomics) { ... }
reportCompare(true,true);
Messung V0.5 in Prozent
¤ Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.0.1Bemerkung:
(vorverarbeitet am 2026-06-05)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.