summaryrefslogtreecommitdiff
path: root/external/contributions/Google/sputnik_conformance_modified/11_Expressions/11.4_Unary_Operators/11.4.7_Unary_minus_Operator/S11.4.7_A3_T1.js
blob: fbb37d442e1feeac087152371bd4e1e94e374d9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S11.4.7_A3_T1;
* @section: 11.4.7;
* @assertion: Operator -x returns -ToNumber(x);
* @description: Type(x) is boolean primitive or Boolean object;
*/

//CHECK#1
if (-false !== 0) {
  $ERROR('#1: -false === 0. Actual: ' + (-false));
}

//CHECK#2
if (-new Boolean(true) !== -1) {
  $ERROR('#2: -new Boolean(true) === -1. Actual: ' + (-new Boolean(true)));
}