aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/13_Function_Definition/S13_A15_T4.js
blob: e1281e8280d6389961070a24d8414f58b1891ca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
* @name: S13_A15_T4;
* @section: 13;
* @assertion: ''arguments'' variable overrides ActivationObject.arguments;
* @description: Declaring a variable named with "arguments" and following a "return" statement within a function body;
*/


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S13_A15_T4",

path: "13_Function_Definition\S13_A15_T4.js",

assertion: "\'\'arguments\'\' variable overrides ActivationObject.arguments",

description: "Declaring a variable named with \"arguments\" and following a \"return\" statement within a function body",

test: function testcase() {
   THE_ANSWER="Answer to Life, the Universe, and Everything";

function __func(){
    return typeof arguments;
    var arguments = THE_ANSWER;
};

//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (__func(42,42,42) !== "object") {
	$ERROR('#1: __func(42,42,42) === "object". Actual: __func(42,42,42)==='+__func(42,42,42));
}
//
//////////////////////////////////////////////////////////////////////////////

 }
});