summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/ch08/8.5/S8.5_A6.js
blob: e621f75630fb259d756e81e852ee55a48d49e638 (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * -Infinity expression has a type Number
 *
 * @path ch08/8.5/S8.5_A6.js
 * @description Check type of -Infinity
 */

var x=-Infinity;

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

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