Home | History | Annotate | Download | only in ExecutionContexts

Lines Matching defs:arguments

27     If the function object being invoked has an arguments property, let x be
29 property [[OldArguments]] whose initial value is x; otherwise, an arguments
31 not given an [[OldArguments]] property. Next, arguments object described
32 below (the same one stored in the arguments property of the activation
33 object) is used as the new value of the arguments property of the function
34 object. This new value is installed even if the arguments property already
37 program syntax that is now discouraged: to access the arguments object for
38 function f within the body of f by using the expression f.arguments.
39 The recommended way to access the arguments object for function f within
40 the body of f is simply to refer to the variable arguments.)
55 var arguments = "FAILED!";
73 // The current object already has an arguments property.
76 "(new AnotherTestObject(1,2,3)).arguments",
78 (new AnotherTestObject(1,2,3)).arguments );
93 this.arguments = ARG_STRING;
97 return arguments;
104 arguments = ARG_STRING;
105 return arguments;