blob: bc965cba7427a1802e4754ffe7a877fcb438a39b [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Operator -x returns -ToNumber(x)
es5id: 11.4.7_A3_T3
description: Type(x) is string primitive or String object
---*/
//CHECK#1
if (-"1" !== -1) {
throw new Test262Error('#1: -"1" === -1. Actual: ' + (-"1"));
}
//CHECK#2
if (isNaN(-"x") !== true) {
throw new Test262Error('#2: -"x" === Not-a-Number. Actual: ' + (-"x"));
}
//CHECK#3
if (-new String("-1") !== 1) {
throw new Test262Error('#3: -new String("-1") === 1. Actual: ' + (-new String("-1")));
}