summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch11/11.4/11.4.9/S11.4.9_A2.1_T1.js
blob: d08fdd181f5e1aaffb5e102cf5a46ddb64550ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * Operator !x uses GetValue
 *
 * @path ch11/11.4/11.4.9/S11.4.9_A2.1_T1.js
 * @description Either Type(x) is not Reference or GetBase(x) is not null
 */

//CHECK#1
if (!true !== false) {
  $ERROR('#1: !true === false');
}

//CHECK#2
if (!(!true) !== true) {
  $ERROR('#2: !(!true) === true');
}

//CHECK#3
var x = true;
if (!x !== false) {
  $ERROR('#3: var x = true; !x === false');
}

//CHECK#4
var x = true;
if (!(!x) !== true) {
  $ERROR('#4: var x = true; !(!x) === true');
}

//CHECK#5
var object = new Object();
object.prop = true;
if (!object.prop !== false) {
  $ERROR('#5: var object = new Object(); object.prop = true; !object.prop === false');
}