|
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 * MemberExpression calls ToObject(MemberExpression) and ToString(Expression). CallExpression calls ToObject(CallExpression) and ToString(Expression) |
|
6 * |
|
7 * @path ch11/11.2/11.2.1/S11.2.1_A3_T3.js |
|
8 * @description Checking String case; |
|
9 */ |
|
10 |
|
11 //CHECK#1 |
|
12 if ("abc123".charAt(5) !== "3") { |
|
13 $ERROR('#1: "abc123".charAt(5) === "3". Actual: ' + ("abc123".charAt(5))); |
|
14 } |
|
15 |
|
16 //CHECK#2 |
|
17 if ("abc123"["charAt"](0) !== "a") { |
|
18 $ERROR('#2: "abc123"["charAt"](0) === "a". Actual: ' + ("abc123"["charAt"](0))); |
|
19 } |
|
20 |
|
21 //CHECK#3 |
|
22 if ("abc123".length !== 6) { |
|
23 $ERROR('#3: "abc123".length === 6. Actual: ' + ("abc123".length)); |
|
24 } |
|
25 |
|
26 //CHECK#4 |
|
27 if ("abc123"["length"] !== 6) { |
|
28 $ERROR('#4: "abc123"["length"] === 6. Actual: ' + ("abc123"["length"])); |
|
29 } |
|
30 |
|
31 //CHECK#5 |
|
32 if (new String("abc123").length !== 6) { |
|
33 $ERROR('#5: new String("abc123").length === 6. Actual: ' + (new String("abc123").length)); |
|
34 } |
|
35 |
|
36 //CHECK#6 |
|
37 if (new String("abc123")["charAt"](2) !== "c") { |
|
38 $ERROR('#6: new String("abc123")["charAt"](2) === "c". Actual: ' + (new String("abc123")["charAt"](2))); |
|
39 } |
|
40 |