blob: dccc098d2f1bbfd4a0d4423d2a178e235d6047d3 [file] [log] [blame]
// 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');
}