Uses of Class
net.sourceforge.htmlunit.corejs.javascript.BaseFunction

Packages that use BaseFunction
net.sourceforge.htmlunit.corejs.javascript   
net.sourceforge.htmlunit.corejs.javascript.commonjs.module Provides the public API for the CommonJS Modules/1.1 implementation. 
 

Uses of BaseFunction in net.sourceforge.htmlunit.corejs.javascript
 

Subclasses of BaseFunction in net.sourceforge.htmlunit.corejs.javascript
 class BoundFunction
          The class for results of the Function.bind operation EcmaScript 5 spec, 15.3.4.5
 class FunctionObject
           
 class IdFunctionObject
           
 class NativeFunction
          This class implements the Function native object.
 class NativeJavaConstructor
          This class reflects a single Java constructor into the JavaScript environment.
 class NativeJavaMethod
          This class reflects Java methods into the JavaScript environment and handles overloading of methods.
 

Methods in net.sourceforge.htmlunit.corejs.javascript that return BaseFunction
 BaseFunction TopLevel.getBuiltinCtor(TopLevel.Builtins type)
          Get the cached built-in object constructor from this scope with the given type.
static BaseFunction ScriptRuntime.typeErrorThrower()
          Returns representation of the [[ThrowTypeError]] object.
 

Methods in net.sourceforge.htmlunit.corejs.javascript with parameters of type BaseFunction
static void ScriptRuntime.setFunctionProtoAndParent(BaseFunction fn, Scriptable scope)
           
 

Uses of BaseFunction in net.sourceforge.htmlunit.corejs.javascript.commonjs.module
 

Subclasses of BaseFunction in net.sourceforge.htmlunit.corejs.javascript.commonjs.module
 class Require
          Implements the require() function as defined by Common JS modules.