mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 05:18:32 +02:00
41 lines
898 B
JavaScript
41 lines
898 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* If ToBoolean(x) is false, return y
|
|
*
|
|
* @path ch11/11.11/11.11.2/S11.11.2_A3_T2.js
|
|
* @description Type(x) and Type(y) vary between primitive number and Number object
|
|
*/
|
|
|
|
//CHECK#1
|
|
if ((0 || -0) !== 0) {
|
|
$ERROR('#1.1: (0 || -0) === 0');
|
|
} else {
|
|
if ((1 / (0 || -0)) !== Number.NEGATIVE_INFINITY) {
|
|
$ERROR('#1.2: (0 || -0) === -0');
|
|
}
|
|
}
|
|
|
|
//CHECK#2
|
|
if ((-0 || 0) !== 0) {
|
|
$ERROR('#2.1: (-0 || 0) === 0');
|
|
} else {
|
|
if ((1 / (-0 || 0)) !== Number.POSITIVE_INFINITY) {
|
|
$ERROR('#2.2: (-0 || 0) === +0');
|
|
}
|
|
}
|
|
|
|
//CHECK#3
|
|
var y = new Number(-1);
|
|
if ((0 || y) !== y) {
|
|
$ERROR('#3: (var y = new Number(-1); 0 || y) === y');
|
|
}
|
|
|
|
//CHECK#4
|
|
var y = new Number(0);
|
|
if ((NaN || y) !== y) {
|
|
$ERROR('#4: (var y = new Number(0); NaN || y) === y');
|
|
}
|
|
|