built-ins/Atomics/*: make all indentation consistent (depth & character) ()

This commit is contained in:
Rick Waldron 2018-02-15 15:26:13 -05:00 committed by Leo Balter
parent e1f4ced053
commit dedd68020b
68 changed files with 575 additions and 575 deletions
test/built-ins/Atomics

View File

@ -27,4 +27,3 @@ function hide(k, x) {
return hide(k - 3, x) + x;
return 0;
}

View File

@ -19,14 +19,16 @@ testWithTypedArrayConstructors(function(View) {
var view = new View(sab, 32, 20);
var control = new View(ab, 0, 2);
for ( let val of [10,
-5,
for (let val of [10, -5,
12345,
123456789,
Math.PI,
"33",
{ valueOf: () => 33 },
undefined] )
{
valueOf: () => 33
},
undefined
])
{
assert.sameValue(Atomics.store(view, 3, val), ToInteger(val),
"Atomics.store returns its third argument (" + val + ") converted to Integer, not the input value nor the value that was stored");

View File

@ -29,4 +29,3 @@ function getReport() {
$262.agent.sleep(100);
return r;
}