Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
4 /**
5 * If ToBoolean(x) is false, return x
6 *
7 * @path ch11/11.11/11.11.1/S11.11.1_A3_T2.js
8 * @description Type(x) and Type(y) vary between primitive number and Number object
9 */
11 //CHECK#1
12 if ((-0 && -1) !== 0) {
13 $ERROR('#1.1: (-0 && -1) === 0');
14 } else {
15 if ((1 / (-0 && -1)) !== Number.NEGATIVE_INFINITY) {
16 $ERROR('#1.2: (-0 && -1) === -0');
17 }
18 }
20 //CHECK#2
21 if ((0 && new Number(-1)) !== 0) {
22 $ERROR('#2.1: (0 && new Number(-1)) === 0');
23 } else {
24 if ((1 / (0 && new Number(-1))) !== Number.POSITIVE_INFINITY) {
25 $ERROR('#2.2: (0 && new Number(-1)) === +0');
26 }
27 }
29 //CHECK#3
30 if ((isNaN(NaN && 1)) !== true) {
31 $ERROR('#3: (NaN && 1) === Not-a-Number');
32 }