Class NativeFunction

All Implemented Interfaces:
Serializable, Callable, ConstProperties, DebuggableObject, Function, IdFunctionCall, Scriptable

public abstract class NativeFunction extends BaseFunction
This class implements the Function native object. See ECMA 15.3.
See Also:
  • Constructor Details

    • NativeFunction

      public NativeFunction()
  • Method Details

    • initScriptFunction

      public final void initScriptFunction(Context cx, Scriptable scope)
    • getLength

      public int getLength()
      Overrides:
      getLength in class BaseFunction
    • getArity

      public int getArity()
      Overrides:
      getArity in class BaseFunction
    • jsGet_name

      @Deprecated public String jsGet_name()
      Deprecated.
      Use BaseFunction.getFunctionName() instead. For backwards compatibility keep an old method name used by Batik and possibly others.
    • getEncodedSource

      public String getEncodedSource()
      Get encoded source string.
    • getDebuggableView

      public DebuggableScript getDebuggableView()
    • resumeGenerator

      public Object resumeGenerator(Context cx, Scriptable scope, int operation, Object state, Object value)
      Resume execution of a suspended generator.
      Parameters:
      cx - The current context
      scope - Scope for the parent generator function
      operation - The resumption operation (next, send, etc.. )
      state - The generator state (has locals, stack, etc.)
      value - The return value of yield (if required).
      Returns:
      The next yielded value (if any)