Uses of Interface
org.mozilla.javascript.Constructable
Package
Description
Provides the public API for the CommonJS Modules/1.1 implementation.
-
Uses of Constructable in org.loboevolution.js
Modifier and TypeClassDescriptionclass
JavaConstructorObject class.class
JavaFunctionObject class. -
Uses of Constructable in org.mozilla.javascript
Modifier and TypeInterfaceDescriptioninterface
This is interface that all functions in JavaScript must implement.Modifier and TypeClassDescriptionclass
The class for Arrow Function Definitions EcmaScript 6 Rev 14, March 8, 2013 Draft spec , 13.2class
The base class for Function objects.class
The class for results of the Function.bind operation EcmaScript 5 spec, 15.3.4.5class
This is a helper class for implementing wrappers around Scriptable objects.class
class
class
class
This class implements a JavaScript function that may be used as a constructor by delegating to an interface that can be easily implemented as a lambda.class
This class implements a single JavaScript function that has the prototype of the built-in Function class, and which is implemented using a single function that can easily be implemented using a lambda expression.final class
class
This class implements the Function native object.class
This class reflects Java classes into the JavaScript environment, mainly for constructors and static members.class
This class reflects a single Java constructor into the JavaScript environment.class
This class reflects Java methods into the JavaScript environment and handles overloading of methods.class
This class reflects Java packages into the JavaScript environment.class
This class provides support for implementing Java-style synchronized methods in Javascript.Modifier and TypeFieldDescriptionprotected final Constructable
LambdaConstructor.targetConstructor
Modifier and TypeMethodDescriptionstatic Constructable
AbstractEcmaObjectOperations.speciesConstructor
(Context cx, Scriptable s, Constructable defaultConstructor) Implement the ECMAScript abstract operation "SpeciesConstructor" defined in section 7.2.33 of ECMA262.Modifier and TypeMethodDescriptionstatic Constructable
AbstractEcmaObjectOperations.speciesConstructor
(Context cx, Scriptable s, Constructable defaultConstructor) Implement the ECMAScript abstract operation "SpeciesConstructor" defined in section 7.2.33 of ECMA262.ModifierConstructorDescriptionLambdaConstructor
(Scriptable scope, String name, int length, int flags, Constructable target) Create a new function that may be used as a constructor.LambdaConstructor
(Scriptable scope, String name, int length, Callable target, Constructable targetConstructor) Create a new function that may be used as a constructor.LambdaConstructor
(Scriptable scope, String name, int length, Constructable target) Create a new function that may be used as a constructor. -
Uses of Constructable in org.mozilla.javascript.commonjs.module
Modifier and TypeClassDescriptionclass
Implements the require() function as defined by Common JS modules.