Package org.mozilla.javascript
Class AbstractEcmaObjectOperations
java.lang.Object
org.mozilla.javascript.AbstractEcmaObjectOperations
Abstract Object Operations as defined by EcmaScript
- See Also:
-
- Abstract
Operations - Operations on Objects
Notes
- all methods are to deviate from the method signature defined in the EcmaScript specification, by taking an additional 1st parameter of type Context: (downstream) methods may need the Context object to read flags and we want to avoid having to look up the current context (for performance reasons)
- all methods that implement an Abstract Operation as defined by EcmaScript are to be package-scopes methods, to prevent them from being used directly by 3rd party code, which would hamper evolving them over time to adept to newer EcmaScript specifications
- a link to the method specification of the specific (EcmaScript) version implemented will be put in the JavaDoc of each method that implements an Abstract Operations
- Abstract
Operations - Operations on Objects
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static enum
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription(package private) static boolean
Implementation of Abstract Object operation setIntegrityLevel as defined by EcmaScriptstatic Constructable
speciesConstructor
(Context cx, Scriptable s, Constructable defaultConstructor) Implement the ECMAScript abstract operation "SpeciesConstructor" defined in section 7.2.33 of ECMA262.(package private) static boolean
Implementation of Abstract Object operation testIntegrityLevel as defined by EcmaScript
-
Constructor Details
-
AbstractEcmaObjectOperations
AbstractEcmaObjectOperations()
-
-
Method Details
-
testIntegrityLevel
static boolean testIntegrityLevel(Context cx, Object o, AbstractEcmaObjectOperations.INTEGRITY_LEVEL level) Implementation of Abstract Object operation testIntegrityLevel as defined by EcmaScript- Parameters:
cx
-o
-level
-- Returns:
- boolean
- See Also:
-
setIntegrityLevel
static boolean setIntegrityLevel(Context cx, Object o, AbstractEcmaObjectOperations.INTEGRITY_LEVEL level) Implementation of Abstract Object operation setIntegrityLevel as defined by EcmaScript- Parameters:
cx
-o
-level
-- Returns:
- boolean
- See Also:
-
speciesConstructor
public static Constructable speciesConstructor(Context cx, Scriptable s, Constructable defaultConstructor) Implement the ECMAScript abstract operation "SpeciesConstructor" defined in section 7.2.33 of ECMA262.
-