Uses of Class
org.mozilla.javascript.InterpretedFunction
-
Packages that use InterpretedFunction Package Description org.mozilla.javascript -
-
Uses of InterpretedFunction in org.mozilla.javascript
Fields in org.mozilla.javascript declared as InterpretedFunction Modifier and Type Field Description (package private) InterpretedFunction
Interpreter.CallFrame. fnOrScript
Methods in org.mozilla.javascript that return InterpretedFunction Modifier and Type Method Description (package private) static InterpretedFunction
InterpretedFunction. createFunction(Context cx, Scriptable scope, InterpretedFunction parent, int index)
Create function embedded in script or another function.(package private) static InterpretedFunction
InterpretedFunction. createFunction(Context cx, Scriptable scope, InterpreterData idata, java.lang.Object staticSecurityDomain)
Create function compiled from Function(...) constructor.(package private) static InterpretedFunction
InterpretedFunction. createScript(InterpreterData idata, java.lang.Object staticSecurityDomain)
Create script from compiled bytecode.Methods in org.mozilla.javascript with parameters of type InterpretedFunction Modifier and Type Method Description (package private) static InterpretedFunction
InterpretedFunction. createFunction(Context cx, Scriptable scope, InterpretedFunction parent, int index)
Create function embedded in script or another function.private static boolean
EqualObjectGraphs. equalInterpretedFunctions(InterpretedFunction f1, InterpretedFunction f2)
private static Interpreter.CallFrame
Interpreter. initFrame(Context cx, Scriptable callerScope, Scriptable thisObj, java.lang.Object[] args, double[] argsDbl, int argShift, int argCount, InterpretedFunction fnOrScript, Interpreter.CallFrame parentFrame)
private static Interpreter.CallFrame
Interpreter. initFrameForApplyOrCall(Context cx, Interpreter.CallFrame frame, int indexReg, java.lang.Object[] stack, double[] sDbl, int stackTop, int op, Scriptable calleeScope, IdFunctionObject ifun, InterpretedFunction iApplyCallable)
private static Interpreter.CallFrame
Interpreter. initFrameForNoSuchMethod(Context cx, Interpreter.CallFrame frame, int indexReg, java.lang.Object[] stack, double[] sDbl, int stackTop, int op, Scriptable funThisObj, Scriptable calleeScope, ScriptRuntime.NoSuchMethodShim noSuchMethodShim, InterpretedFunction ifun)
Call __noSuchMethod__.private static void
Interpreter. initFunction(Context cx, Scriptable scope, InterpretedFunction parent, int index)
(package private) static java.lang.Object
Interpreter. interpret(InterpretedFunction ifun, Context cx, Scriptable scope, Scriptable thisObj, java.lang.Object[] args)
Constructors in org.mozilla.javascript with parameters of type InterpretedFunction Constructor Description CallFrame(Context cx, Scriptable thisObj, InterpretedFunction fnOrScript, Interpreter.CallFrame parentFrame)
InterpretedFunction(InterpretedFunction parent, int index)
-