public class ArrowFunction extends BaseFunction
ScriptableObject.KeyComparator, ScriptableObject.LambdaGetterFunction, ScriptableObject.LambdaSetterFunctionId_arguments, Id_arity, Id_length, Id_name, Id_prototype, MAX_INSTANCE_IDCONST, DONTENUM, EMPTY, PERMANENT, READONLY, UNINITIALIZED_CONSTNOT_FOUND| Constructor and Description |
|---|
ArrowFunction(Context cx,
Scriptable scope,
Callable targetFunction,
Scriptable boundThis,
Scriptable boundHomeObject) |
| Modifier and Type | Method and Description |
|---|---|
Object |
call(Context cx,
Scriptable scope,
Scriptable thisObj,
Object[] args)
Should be overridden.
|
Scriptable |
construct(Context cx,
Scriptable scope,
Object[] args)
Call the function as a constructor.
|
protected void |
createPrototypeProperty() |
int |
getArity() |
String |
getFunctionName() |
int |
getLength() |
boolean |
hasInstance(Scriptable instance)
Implements the instanceof operator for JavaScript Function objects.
|
createObject, createProperties, defaultGet, defaultHas, defaultPut, getClassName, getClassPrototype, getHomeObject, getPrototypeProperty, getTypeOf, hasDefaultParameters, hasPrototypeProperty, includeNonStandardProps, isGeneratorFunction, setHomeObject, setImmunePrototypeProperty, setPrototypeProperty, setPrototypePropertyAttributes, setStandardPropertyAttributes, setupDefaultPrototypeapplyDescriptorToAttributeBitset, associateValue, avoidObjectDetection, buildDataDescriptor, callMethod, callMethod, checkPropertyChangeForSlot, checkPropertyDefinition, defineBuiltInProperty, defineBuiltInProperty, defineBuiltInProperty, defineBuiltInProperty, defineClass, defineClass, defineClass, defineConst, defineConstProperty, defineFunctionProperties, defineOwnProperties, defineOwnProperty, defineOwnProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, defineProperty, delete, delete, delete, deleteProperty, deleteProperty, deleteProperty, ensureScriptable, ensureScriptableObject, ensureScriptableObjectButNotSymbol, ensureSymbolScriptable, ensureType, equivalentValues, get, get, get, get, getAllIds, getArrayPrototype, getAssociatedValue, getAttributes, getAttributes, getAttributes, getAttributes, getAttributes, getClassPrototype, getDefaultValue, getDefaultValue, getExternalArrayData, getExternalArrayLength, getFunctionPrototype, getGeneratorFunctionPrototype, getGetterOrSetter, getGetterOrSetter, getIds, getObjectPrototype, getOwnPropertyDescriptor, getParentScope, getProperty, getProperty, getProperty, getPropertyIds, getPrototype, getSuperProperty, getSuperProperty, getSuperProperty, getTopLevelScope, getTopScopeValue, getTypedProperty, getTypedProperty, has, has, has, hasProperty, hasProperty, hasProperty, isAccessorDescriptor, isConst, isDataDescriptor, isEmpty, isExtensible, isFalse, isGenericDescriptor, isGetterOrSetter, isSealed, isTrue, preventExtensions, put, put, put, putConst, putConstProperty, putOwnProperty, putOwnProperty, putOwnProperty, putProperty, putProperty, putProperty, putSuperProperty, putSuperProperty, putSuperProperty, querySlot, redefineProperty, sameValue, sealObject, setAttributes, setAttributes, setAttributes, setAttributes, setAttributes, setCommonDescriptorProperties, setExternalArrayData, setGetterOrSetter, setParentScope, setPrototype, sizecreateSlotMapclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitdelete, delete, get, get, getDefaultValue, getIds, getParentScope, getPrototype, has, has, put, put, setParentScope, setPrototypepublic ArrowFunction(Context cx, Scriptable scope, Callable targetFunction, Scriptable boundThis, Scriptable boundHomeObject)
protected void createPrototypeProperty()
createPrototypeProperty in class BaseFunctionpublic Object call(Context cx, Scriptable scope, Scriptable thisObj, Object[] args)
BaseFunctioncall in interface Callablecall in interface Functioncall in class BaseFunctioncx - the current Context for this threadscope - the scope to execute the function relative to. This is set to the value returned
by getParentScope() except when the function is called from a closure.thisObj - the JavaScript this objectargs - the array of argumentspublic Scriptable construct(Context cx, Scriptable scope, Object[] args)
FunctionThis method is invoked by the runtime in order to satisfy a use of the JavaScript
new operator. This method is expected to create a new object and return it.
construct in interface Constructableconstruct in interface Functionconstruct in class BaseFunctioncx - the current Context for this threadscope - an enclosing scope of the caller except when the function is called from a
closure.args - the array of argumentspublic boolean hasInstance(Scriptable instance)
BaseFunction
foo = new Foo();
foo instanceof Foo; // true
hasInstance in interface ScriptablehasInstance in class BaseFunctioninstance - The value that appeared on the LHS of the instanceof operatorpublic int getLength()
getLength in class BaseFunctionpublic String getFunctionName()
getFunctionName in class BaseFunctionpublic int getArity()
getArity in class BaseFunctionCopyright © 2025 HtmlUnit. All rights reserved.