2011-09-07 08:35:18 +02:00
|
|
|
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: Operator +x returns ToNumber(x)
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 11.4.6_A3_T3
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Type(x) is string primitive or String object
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
//CHECK#1
|
|
|
|
if (+"1" !== 1) {
|
2021-07-28 22:48:39 +02:00
|
|
|
throw new Test262Error('#1: +"1" === 1. Actual: ' + (+"1"));
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#2
|
2022-03-24 21:52:05 +01:00
|
|
|
if (+new Number("-1") !== -1) {
|
|
|
|
throw new Test262Error('#2: +new String("-1") === -1. Actual: ' + (+new String("-1")));
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#3
|
2022-03-24 21:52:05 +01:00
|
|
|
if (isNaN(+"x") !== true) {
|
|
|
|
throw new Test262Error('#3: +"x" === Not-a-Number. Actual: ' + (+"x"));
|
|
|
|
}
|
|
|
|
|
|
|
|
//CHECK#4
|
|
|
|
if (isNaN(+"INFINITY") !== true) {
|
|
|
|
throw new Test262Error('#4: +"INFINITY" === Not-a-Number. Actual: ' + (+"INFINITY"));
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
2022-03-25 13:35:50 +01:00
|
|
|
|
|
|
|
//CHECK#5
|
|
|
|
if (isNaN(+"infinity") !== true) {
|
|
|
|
throw new Test262Error('#5: +"infinity" === Not-a-Number. Actual: ' + (+"infinity"));
|
|
|
|
}
|