| // Copyright 2009 the Sputnik authors. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| When String is called as a function rather than as a constructor, it |
| performs a type conversion |
| description: Call String(0) and String(-0) |
| ////////////////////////////////////////////////////////////////////////////// |
| if (typeof __str !== "string") { |
| $ERROR('#1: __str = String(0); typeof __str === "string". Actual: typeof __str ==='+typeof __str ); |
| ////////////////////////////////////////////////////////////////////////////// |
| ////////////////////////////////////////////////////////////////////////////// |
| $ERROR('#2: __str = String(0); __str === "0". Actual: __str ==='+__str ); |
| ////////////////////////////////////////////////////////////////////////////// |
| ////////////////////////////////////////////////////////////////////////////// |
| if (typeof __str !== "string") { |
| $ERROR('#3: __str = String(-0); typeof __str === "string". Actual: typeof __str ==='+typeof __str ); |
| ////////////////////////////////////////////////////////////////////////////// |
| ////////////////////////////////////////////////////////////////////////////// |
| $ERROR('#4: __str = String(-0); __str === "0". Actual: __str ==='+__str ); |
| ////////////////////////////////////////////////////////////////////////////// |