OracleJavaScript API Reference for Oracle ADF Faces

 

SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD

org.ecmascript.object
Class Arguments

org.ecmascript.object.Object
   |
   +--org.ecmascript.object.Arguments

public abstract class Arguments
extends Object
The native browser JavaScript object that is created when control enters an execution context for function code. References to this object are made using the keyword arguments.
Note that this object is implemented and supported by the web browser and results of its use may vary.



Field Summary

public static Function
callee
Deprecated: use a named function like functionFoo() instead of arguments.callee()
public static Function
caller
Deprecated: use the caller of a named function like functionFoo.caller instead of arguments.callee.caller
public static Number
length
The number of actual parameter values supplied by the caller (not the expected number of arguments).


Fields inherited from org.ecmascript.object.Object

constructor, prototype


Field Detail


callee

public static Function callee

The Function object being executed. This allows anonymous functions to be recursive.

Deprecated: use a named function like functionFoo() instead of arguments.callee()

caller

public static Function caller

The Function object being executed when the current Function was executed or undefined if the function is a top-level Function.

Deprecated: use the caller of a named function like functionFoo.caller instead of arguments.callee.caller
See also:
Function.caller

length

public static Number length

The number of actual parameter values supplied by the caller (not the expected number of arguments).
See also:
Function.length

SUMMARY: FIELD | CONSTR | METHOD    DETAIL: FIELD | CONSTR | METHOD

 

Generated on 2013.01.09 16:37 UTC
Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved.