public abstract class JSFunction extends java.lang.Object implements JSFunctionFunctions
hasOwnProperty| Modifier and Type | Field and Description |
|---|---|
protected JSFunction |
constructor
property constructor
|
protected JSNumber |
length
property length
|
JSFunction |
prototype
property prototype
|
| Constructor and Description |
|---|
JSFunction(JSString argument_names,
JSString body)
Object Function(argument_names..., body)
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitapply, callhasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOfprotected JSNumber length
Numberpublic JSFunction prototype
Functionprotected JSFunction constructor
Functionpublic JSFunction(JSString argument_names, JSString body)
argument_names - Any number of string arguments, each naming one or more arguments of the Function object to be created.body - A string that represents the body of the function. It may contain an number of JavaScript statements, separated by semicolons.