
com.oracle.truffle.js.runtime.builtins.JSClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of js-language Show documentation
Show all versions of js-language Show documentation
Graal JavaScript implementation
The newest version!
/*
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* The Universal Permissive License (UPL), Version 1.0
*
* Subject to the condition set forth below, permission is hereby granted to any
* person obtaining a copy of this software, associated documentation and/or
* data (collectively the "Software"), free of charge and under any and all
* copyright rights in the Software, and any and all patent rights owned or
* freely licensable by each licensor hereunder covering either (i) the
* unmodified Software as contributed to or provided by such licensor, or (ii)
* the Larger Works (as defined below), to deal in both
*
* (a) the Software, and
*
* (b) any piece of software and/or hardware listed in the lrgrwrks.txt file if
* one is included with the Software each a "Larger Work" to which the Software
* is contributed by such licensors),
*
* without restriction, including without limitation the rights to copy, create
* derivative works of, display, perform, and distribute the Software and make,
* use, sell, offer for sale, import, export, have made, and have sold the
* Software and the Larger Work(s), and to sublicense the foregoing rights on
* either these or other terms.
*
* This license is subject to the following condition:
*
* The above copyright notice and either this complete permission notice or at a
* minimum a reference to the UPL must be included in all copies or substantial
* portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
package com.oracle.truffle.js.runtime.builtins;
import java.util.ArrayList;
import java.util.List;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
import com.oracle.truffle.api.dsl.Idempotent;
import com.oracle.truffle.api.nodes.Node;
import com.oracle.truffle.api.object.Shape;
import com.oracle.truffle.api.strings.TruffleString;
import com.oracle.truffle.js.runtime.Errors;
import com.oracle.truffle.js.runtime.JSContext;
import com.oracle.truffle.js.runtime.JSRealm;
import com.oracle.truffle.js.runtime.JSRuntime;
import com.oracle.truffle.js.runtime.Symbol;
import com.oracle.truffle.js.runtime.objects.JSDynamicObject;
import com.oracle.truffle.js.runtime.objects.JSShape;
import com.oracle.truffle.js.runtime.objects.PropertyDescriptor;
/**
* Basic interface for all JavaScript (ordinary and exotic) object types. A JSClass defines the
* internal and access methods of a JSObject and allows for overriding their behavior for different
* types of objects. It can be obtained from an object via {@link Shape#getDynamicType()}.
*
* The interface is inspired by ECMAScript internal methods.
*
* Parameter order: JSDynamicObject receiver[, the rest...].
*/
public abstract class JSClass {
protected JSClass() {
}
/**
* 9.1.1 [[GetPrototypeOf]] ().
*/
@TruffleBoundary
public abstract JSDynamicObject getPrototypeOf(JSDynamicObject thisObj);
/**
* 9.1.2 [[SetPrototypeOf]] (V).
*/
@TruffleBoundary
public abstract boolean setPrototypeOf(JSDynamicObject thisObj, JSDynamicObject newPrototype);
/**
* 9.1.3 [[IsExtensible]] ().
*/
@TruffleBoundary
public abstract boolean isExtensible(JSDynamicObject thisObj);
/**
* 9.1.4 [[PreventExtensions]] ().
*/
@TruffleBoundary
public abstract boolean preventExtensions(JSDynamicObject thisObj, boolean doThrow);
/**
* 9.1.5 [[GetOwnProperty]] (P).
*/
@TruffleBoundary
public abstract PropertyDescriptor getOwnProperty(JSDynamicObject thisObj, Object key);
/**
* 9.1.6 [[DefineOwnProperty]] (P, Desc).
*/
@TruffleBoundary
public abstract boolean defineOwnProperty(JSDynamicObject thisObj, Object key, PropertyDescriptor value, boolean doThrow);
/**
* 9.1.7 [[HasProperty]] (P).
*/
@TruffleBoundary
public abstract boolean hasProperty(JSDynamicObject thisObj, Object key);
@TruffleBoundary
public abstract boolean hasProperty(JSDynamicObject thisObj, long index);
@TruffleBoundary
public abstract boolean hasOwnProperty(JSDynamicObject thisObj, Object key);
@TruffleBoundary
public abstract boolean hasOwnProperty(JSDynamicObject thisObj, long index);
/**
* 9.1.8 [[Get]] (P, Receiver).
*/
public final Object get(JSDynamicObject thisObj, Object key) {
Object value = getHelper(thisObj, thisObj, key, null);
assert !(value instanceof String);
return JSRuntime.nullToUndefined(value);
}
public Object get(JSDynamicObject thisObj, long index) {
Object value = getHelper(thisObj, thisObj, index, null);
assert !(value instanceof String);
return JSRuntime.nullToUndefined(value);
}
@TruffleBoundary
public abstract Object getHelper(JSDynamicObject store, Object thisObj, Object key, Node encapsulatingNode);
@TruffleBoundary
public abstract Object getHelper(JSDynamicObject store, Object thisObj, long index, Node encapsulatingNode);
@TruffleBoundary
public abstract Object getOwnHelper(JSDynamicObject store, Object thisObj, Object key, Node encapsulatingNode);
@TruffleBoundary
public abstract Object getOwnHelper(JSDynamicObject store, Object thisObj, long index, Node encapsulatingNode);
@TruffleBoundary
public abstract Object getMethodHelper(JSDynamicObject store, Object thisObj, Object key, Node encapsulatingNode);
/**
* 9.1.9 [[Set]] (P, V, Receiver).
*/
@TruffleBoundary
public abstract boolean set(JSDynamicObject thisObj, Object key, Object value, Object receiver, boolean isStrict, Node encapsulatingNode);
@TruffleBoundary
public abstract boolean set(JSDynamicObject thisObj, long index, Object value, Object receiver, boolean isStrict, Node encapsulatingNode);
/**
* 9.1.10 [[Delete]] (P).
*/
@TruffleBoundary
public abstract boolean delete(JSDynamicObject thisObj, Object key, boolean isStrict);
@TruffleBoundary
public abstract boolean delete(JSDynamicObject thisObj, long index, boolean isStrict);
/**
* 9.1.12 [[OwnPropertyKeys]]().
*
* Provides all own properties of this object with a String or Symbol
* key. Represents the [[OwnPropertyKeys]] internal method.
*
* @return a List of the keys of all own properties of that object
*/
public final List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy