// Copyright 2009 the Sputnik authors. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. /** * String.prototype.valueOf() returns this string value * * @path ch15/15.5/15.5.4/S15.5.4.3_A1_T1.js * @description Create String object as new String(1) and check it`s valueOf() */ var __string__obj = new String(1); ////////////////////////////////////////////////////////////////////////////// //CHECK# if (__string__obj.valueOf() !== ""+1) { $ERROR('#1: __string__obj = new String(1); __string__obj.valueOf() === ""+1. Actual: __string__obj.valueOf() ==='+__string__obj.valueOf() ); } // //////////////////////////////////////////////////////////////////////////////