| Package | Description |
|---|---|
| org.htmlunit.corejs.javascript |
| Modifier and Type | Method and Description |
|---|---|
static ScriptRuntime.LookupResult |
ScriptRuntime.getElemAndThis(Object obj,
Object elem,
Context cx,
Scriptable scope)
Prepare for calling obj[id](...): return function corresponding to obj[id] and make obj
properly converted to Scriptable available in the result.
|
static ScriptRuntime.LookupResult |
ScriptRuntime.getElemAndThisOptional(Object obj,
Object elem,
Context cx,
Scriptable scope) |
static ScriptRuntime.LookupResult |
ScriptRuntime.getNameAndThis(String name,
Context cx,
Scriptable scope)
Prepare for calling name(...): return function corresponding to name and make current top
scope available as part of the result.
|
static ScriptRuntime.LookupResult |
ScriptRuntime.getNameAndThisOptional(String name,
Context cx,
Scriptable scope) |
static ScriptRuntime.LookupResult |
ScriptRuntime.getPropAndThis(Object obj,
String property,
Context cx,
Scriptable scope)
Prepare for calling obj.property(...): return function corresponding to obj.property and make
obj properly converted to Scriptable in the result.
|
static ScriptRuntime.LookupResult |
ScriptRuntime.getPropAndThisOptional(Object obj,
String property,
Context cx,
Scriptable scope) |
static ScriptRuntime.LookupResult |
ScriptRuntime.getValueAndThis(Object value,
Context cx)
Prepare for calling <expression>(...): return function corresponding to
<expression> and make parent scope of the function available in the result.
|
static ScriptRuntime.LookupResult |
ScriptRuntime.getValueAndThisOptional(Object value,
Context cx) |
Copyright © 2025 HtmlUnit. All rights reserved.