| Package | Description |
|---|---|
| org.htmlunit.corejs.javascript |
| Modifier and Type | Method and Description |
|---|---|
void |
ScriptableObject.defineProperty(Context cx,
String name,
ScriptableObject.LambdaGetterFunction getter,
int attributes) |
void |
ScriptableObject.defineProperty(Context cx,
String name,
ScriptableObject.LambdaGetterFunction getter,
ScriptableObject.LambdaSetterFunction setter,
int attributes)
Define a property on this object that is implemented using lambda functions accepting
Scriptable `this` object as first parameter.
|
void |
ScriptableObject.defineProperty(Context cx,
Symbol key,
ScriptableObject.LambdaGetterFunction getter,
ScriptableObject.LambdaSetterFunction setter,
int attributes) |
void |
LambdaConstructor.definePrototypeProperty(Context cx,
String name,
ScriptableObject.LambdaGetterFunction getter,
int attributes)
Define a property on the prototype using a function.
|
void |
LambdaConstructor.definePrototypeProperty(Context cx,
String name,
ScriptableObject.LambdaGetterFunction getter,
ScriptableObject.LambdaSetterFunction setter,
int attributes)
Define a property on the prototype using functions for getter and setter.
|
void |
LambdaConstructor.definePrototypeProperty(Context cx,
Symbol key,
ScriptableObject.LambdaGetterFunction getter,
int attributes) |
void |
LambdaConstructor.definePrototypeProperty(Context cx,
Symbol key,
ScriptableObject.LambdaGetterFunction getter,
ScriptableObject.LambdaSetterFunction setter,
int attributes) |
void |
LambdaAccessorSlot.setGetter(Scriptable scope,
ScriptableObject.LambdaGetterFunction getter) |
Copyright © 2025 HtmlUnit. All rights reserved.