summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/arguments-object/S10.6_A7.js
blob: 1f6e9bdf7f1aeda06a97944633eb889b323ef427 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Get arguments of function
es5id: 10.6_A7
description: Use property arguments
---*/

function f1() {
  return arguments;
}
  
//CHECK#1-5
for(var i = 1; i < 5; i++){  
if (f1(1,2,3,4,5)[i] !== (i+1))
  $ERROR("#"+i+": Returning function's arguments work wrong, f1(1,2,3,4,5)["+i+"] !== "+(i+1));
}

reportCompare(0, 0);