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

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

     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_T2.js
     8  * @description Some strings convert to String by implicit transformation
     9  */
    11 // CHECK#1
    12 var x1 = "abc";
    13 if (x1 + "" !== x1) {
    14   $ERROR('#1: "abc" + "" === "abc". Actual: ' + ("abc" + ""));
    15 }
    17 // CHECK#2
    18 var x2 = "abc";
    19 if (typeof x2 + "" !== typeof x2) { 
    20   $ERROR('#2: typeof "abc" + "" === "string". Actual: ' + (typeof "abc" + ""));
    21 }

mercurial