aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A2_T1.js
blob: 74d91355f355a7aa2fe97cb1a54fd6b500899cdd (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
40
41
42
43
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S11.4.3_A2_T1;
* @section: 11.4.3;
* @assertion: Operator "typeof" uses GetValue;
* @description: Either Type(x) is not Reference or GetBase(x) is not null;
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S11.4.3_A2_T1",

path: "TestCases/11_Expressions/11.4_Unary_Operators/11.4.3_The_typeof_Operator/S11.4.3_A2_T1.js",

assertion: "Operator \"typeof\" uses GetValue",

description: "Either Type(x) is not Reference or GetBase(x) is not null",

test: function testcase() {
   //CHECK#1
if (typeof 0 !== "number") {
  $ERROR('#1: typeof 0 === "number". Actual: ' + (typeof 0));
}

//CHECK#2
var x = 0;
if (typeof x !== "number") {
  $ERROR('#2: typeof x === "number". Actual: ' + (typeof x));
}

//CHECK#3
var x = new Object();
if (typeof x !== "object") {
  $ERROR('#3: var x = new Object(); typeof x === "object". Actual: ' + (typeof x));
}

 }
});