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
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-07-22 01:09:02 +02:00
|
|
|
When "String" is called as part of a new expression, it is a constructor: it initialises the newly created object and
|
|
|
|
The [[Value]] property of the newly constructed object is set to ToString(value), or to the empty string if value is not supplied
|
2014-07-25 00:41:42 +02:00
|
|
|
es5id: 15.5.2.1_A1_T3
|
2014-07-22 01:09:02 +02:00
|
|
|
description: Creating string object with "new String("")"
|
|
|
|
---*/
|
2011-09-07 08:35:18 +02:00
|
|
|
|
|
|
|
var __str = new String("");
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1
|
|
|
|
if (typeof __str !== "object") {
|
2018-02-09 18:09:47 +01:00
|
|
|
$ERROR('#1: __str = new String(""); typeof __str === "object". Actual: typeof __str ==='+typeof __str );
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#1.5
|
|
|
|
if (__str.constructor !== String) {
|
2018-02-09 18:09:47 +01:00
|
|
|
$ERROR('#1.5: __str = new String(""); __str.constructor === String. Actual: __str.constructor ==='+__str.constructor );
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#2
|
2018-02-09 18:09:47 +01:00
|
|
|
if (__str !="") {
|
|
|
|
$ERROR('#2: __str = new String(""); __str =="". Actual: __str =='+__str );
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//CHECK#3
|
2018-02-09 18:09:47 +01:00
|
|
|
if ( __str === "") {
|
|
|
|
$ERROR('#3: __str = new String(""); __str !== ""');
|
2011-09-07 08:35:18 +02:00
|
|
|
}
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|