blob: 14a0e85e35d26974b4de63594da915ca06689382 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* MemberExpression calls ToObject(MemberExpression) and ToString(Expression). CallExpression calls ToObject(CallExpression) and ToString(Expression)
*
* @path ch11/11.2/11.2.1/S11.2.1_A3_T3.js
* @description Checking String case;
*/
//CHECK#1
if ("abc123".charAt(5) !== "3") {
$ERROR('#1: "abc123".charAt(5) === "3". Actual: ' + ("abc123".charAt(5)));
}
//CHECK#2
if ("abc123"["charAt"](0) !== "a") {
$ERROR('#2: "abc123"["charAt"](0) === "a". Actual: ' + ("abc123"["charAt"](0)));
}
//CHECK#3
if ("abc123".length !== 6) {
$ERROR('#3: "abc123".length === 6. Actual: ' + ("abc123".length));
}
//CHECK#4
if ("abc123"["length"] !== 6) {
$ERROR('#4: "abc123"["length"] === 6. Actual: ' + ("abc123"["length"]));
}
//CHECK#5
if (new String("abc123").length !== 6) {
$ERROR('#5: new String("abc123").length === 6. Actual: ' + (new String("abc123").length));
}
//CHECK#6
if (new String("abc123")["charAt"](2) !== "c") {
$ERROR('#6: new String("abc123")["charAt"](2) === "c". Actual: ' + (new String("abc123")["charAt"](2)));
}