Uses of Class
org.mozilla.javascript.NativeFunction
-
Packages that use NativeFunction Package Description org.mozilla.javascript org.mozilla.javascript.optimizer -
-
Uses of NativeFunction in org.mozilla.javascript
Subclasses of NativeFunction in org.mozilla.javascript Modifier and Type Class Description (package private) class
InterpretedFunction
Fields in org.mozilla.javascript declared as NativeFunction Modifier and Type Field Description private NativeFunction
ES6Generator. function
(package private) NativeFunction
NativeCall. function
private NativeFunction
NativeGenerator. function
Methods in org.mozilla.javascript with parameters of type NativeFunction Modifier and Type Method Description static Scriptable
ScriptRuntime. createArrowFunctionActivation(NativeFunction funObj, Scriptable scope, java.lang.Object[] args, boolean isStrict)
static Scriptable
ScriptRuntime. createFunctionActivation(NativeFunction funObj, Scriptable scope, java.lang.Object[] args)
Deprecated.static Scriptable
ScriptRuntime. createFunctionActivation(NativeFunction funObj, Scriptable scope, java.lang.Object[] args, boolean isStrict)
static void
ScriptRuntime. initFunction(Context cx, Scriptable scope, NativeFunction function, int type, boolean fromEvalCode)
static void
ScriptRuntime. initScript(NativeFunction funObj, Scriptable thisObj, Context cx, Scriptable scope, boolean evalScript)
Constructors in org.mozilla.javascript with parameters of type NativeFunction Constructor Description ES6Generator(Scriptable scope, NativeFunction function, java.lang.Object savedState)
NativeCall(NativeFunction function, Scriptable scope, java.lang.Object[] args, boolean isArrow, boolean isStrict)
NativeGenerator(Scriptable scope, NativeFunction function, java.lang.Object savedState)
-
Uses of NativeFunction in org.mozilla.javascript.optimizer
Methods in org.mozilla.javascript.optimizer with parameters of type NativeFunction Modifier and Type Method Description static Function
OptRuntime. bindThis(NativeFunction fn, Context cx, Scriptable scope, Scriptable thisObj)
static Scriptable
OptRuntime. createNativeGenerator(NativeFunction funObj, Scriptable scope, Scriptable thisObj, int maxLocals, int maxStack)
static void
OptRuntime. initFunction(NativeFunction fn, int functionType, Scriptable scope, Context cx)
-