|
1 // Copyright 2009 the Sputnik authors. All rights reserved. |
|
2 // This code is governed by the BSD license found in the LICENSE file. |
|
3 |
|
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 */ |
|
10 |
|
11 // CHECK#1 |
|
12 var x1 = "abc"; |
|
13 if (x1 + "" !== x1) { |
|
14 $ERROR('#1: "abc" + "" === "abc". Actual: ' + ("abc" + "")); |
|
15 } |
|
16 |
|
17 // CHECK#2 |
|
18 var x2 = "abc"; |
|
19 if (typeof x2 + "" !== typeof x2) { |
|
20 $ERROR('#2: typeof "abc" + "" === "string". Actual: ' + (typeof "abc" + "")); |
|
21 } |
|
22 |