Class JS5Function
- java.lang.Object
-
- org.fife.rsta.ac.js.ecma.api.ecma3.JSFunction
-
- org.fife.rsta.ac.js.ecma.api.ecma5.JS5Function
-
- All Implemented Interfaces:
JSFunctionFunctions,JSObjectFunctions,JS5FunctionFunctions,JS5ObjectFunctions
public abstract class JS5Function extends JSFunction implements JS5FunctionFunctions
Object Function- Since:
- Standard ECMA-262 3rd. Edition
-
-
Field Summary
-
Fields inherited from class org.fife.rsta.ac.js.ecma.api.ecma3.JSFunction
constructor, length, prototype
-
-
Constructor Summary
Constructors Constructor Description JS5Function(JSString argument_names, JSString body)Object Function(argument_names..., body)
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma5.functions.JS5FunctionFunctions
bind
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSFunctionFunctions
apply, call
-
Methods inherited from interface org.fife.rsta.ac.js.ecma.api.ecma3.functions.JSObjectFunctions
hasOwnProperty, isPrototypeOf, propertyIsEnumerable, toLocaleString, toString, valueOf
-
-
-
-
Constructor Detail
-
JS5Function
public JS5Function(JSString argument_names, JSString body)
Object Function(argument_names..., body)- Parameters:
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.- Since:
- Standard ECMA-262 3rd. Edition, Level 2 Document Object Model Core Definition.
-
-