js/src/tests/test262/ch09/9.8/S9.8_A4_T1.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 // Copyright 2009 the Sputnik authors.  All rights reserved.
     2 // This code is governed by the BSD license found in the LICENSE file.
     4 /**
     5  * Result of String conversion from string value is the input argument (no conversion)
     6  *
     7  * @path ch09/9.8/S9.8_A4_T1.js
     8  * @description Some strings convert to String with explicit transformation
     9  */
    11 // CHECK#1
    12 var x1 = "abc";
    13 if (String(x1) !== x1) {
    14   $ERROR('#1: String("abc") === "abc". Actual: ' + (String("abc")));
    15 }
    17 // CHECK#2
    18 var x2 = "abc";
    19 if (typeof String(x2) !== typeof x2) { 
    20   $ERROR('#2: typeof String("abc") === "string". Actual: ' + (typeof String("abc")));
    21 }

mercurial