diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 14:29:10 +0000 |
commit | 2aa4a82499d4becd2284cdb482213d541b8804dd (patch) | |
tree | b80bf8bf13c3766139fbacc530efd0dd9d54394c /js/src/debugger/Object.h | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 86.0.1.upstream/86.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'js/src/debugger/Object.h')
-rw-r--r-- | js/src/debugger/Object.h | 212 |
1 files changed, 212 insertions, 0 deletions
diff --git a/js/src/debugger/Object.h b/js/src/debugger/Object.h new file mode 100644 index 0000000000..6ed1cc69b8 --- /dev/null +++ b/js/src/debugger/Object.h @@ -0,0 +1,212 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- + * vim: set ts=8 sts=2 et sw=2 tw=80: + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef debugger_Object_h +#define debugger_Object_h + +#include "mozilla/Assertions.h" // for AssertionConditionType, MOZ_ASSERT +#include "mozilla/Attributes.h" // for MOZ_MUST_USE +#include "mozilla/Maybe.h" // for Maybe +#include "mozilla/Range.h" // for Range +#include "mozilla/Result.h" // for Result + +#include "jsapi.h" // for JSContext +#include "jstypes.h" // for JS_PUBLIC_API +#include "NamespaceImports.h" // for Value, MutableHandleValue, HandleId + +#include "gc/Rooting.h" // for HandleDebuggerObject +#include "js/Promise.h" // for PromiseState +#include "js/Proxy.h" // for PropertyDescriptor +#include "vm/JSObject.h" // for JSObject (ptr only) +#include "vm/NativeObject.h" // for NativeObject + +class JS_PUBLIC_API JSAtom; + +namespace js { + +class Completion; +class Debugger; +class EvalOptions; +class GlobalObject; +class PromiseObject; + +class DebuggerObject : public NativeObject { + public: + static const JSClass class_; + + static NativeObject* initClass(JSContext* cx, Handle<GlobalObject*> global, + HandleObject debugCtor); + static DebuggerObject* create(JSContext* cx, HandleObject proto, + HandleObject referent, + HandleNativeObject debugger); + + void trace(JSTracer* trc); + + // Properties + static MOZ_MUST_USE bool getClassName(JSContext* cx, + HandleDebuggerObject object, + MutableHandleString result); + static MOZ_MUST_USE bool getBoundTargetFunction( + JSContext* cx, HandleDebuggerObject object, + MutableHandleDebuggerObject result); + static MOZ_MUST_USE bool getBoundThis(JSContext* cx, + HandleDebuggerObject object, + MutableHandleValue result); + static MOZ_MUST_USE bool getBoundArguments(JSContext* cx, + HandleDebuggerObject object, + MutableHandle<ValueVector> result); + static MOZ_MUST_USE bool getAllocationSite(JSContext* cx, + HandleDebuggerObject object, + MutableHandleObject result); + static MOZ_MUST_USE bool getErrorMessageName(JSContext* cx, + HandleDebuggerObject object, + MutableHandleString result); + static MOZ_MUST_USE bool getErrorNotes(JSContext* cx, + HandleDebuggerObject object, + MutableHandleValue result); + static MOZ_MUST_USE bool getErrorLineNumber(JSContext* cx, + HandleDebuggerObject object, + MutableHandleValue result); + static MOZ_MUST_USE bool getErrorColumnNumber(JSContext* cx, + HandleDebuggerObject object, + MutableHandleValue result); + static MOZ_MUST_USE bool getScriptedProxyTarget( + JSContext* cx, HandleDebuggerObject object, + MutableHandleDebuggerObject result); + static MOZ_MUST_USE bool getScriptedProxyHandler( + JSContext* cx, HandleDebuggerObject object, + MutableHandleDebuggerObject result); + static MOZ_MUST_USE bool getPromiseValue(JSContext* cx, + HandleDebuggerObject object, + MutableHandleValue result); + static MOZ_MUST_USE bool getPromiseReason(JSContext* cx, + HandleDebuggerObject object, + MutableHandleValue result); + + // Methods + static MOZ_MUST_USE bool isExtensible(JSContext* cx, + HandleDebuggerObject object, + bool& result); + static MOZ_MUST_USE bool isSealed(JSContext* cx, HandleDebuggerObject object, + bool& result); + static MOZ_MUST_USE bool isFrozen(JSContext* cx, HandleDebuggerObject object, + bool& result); + static MOZ_MUST_USE JS::Result<Completion> getProperty( + JSContext* cx, HandleDebuggerObject object, HandleId id, + HandleValue receiver); + static MOZ_MUST_USE JS::Result<Completion> setProperty( + JSContext* cx, HandleDebuggerObject object, HandleId id, + HandleValue value, HandleValue receiver); + static MOZ_MUST_USE bool getPrototypeOf(JSContext* cx, + HandleDebuggerObject object, + MutableHandleDebuggerObject result); + static MOZ_MUST_USE bool getOwnPropertyNames(JSContext* cx, + HandleDebuggerObject object, + MutableHandle<IdVector> result); + static MOZ_MUST_USE bool getOwnPropertySymbols( + JSContext* cx, HandleDebuggerObject object, + MutableHandle<IdVector> result); + static MOZ_MUST_USE bool getOwnPropertyDescriptor( + JSContext* cx, HandleDebuggerObject object, HandleId id, + MutableHandle<PropertyDescriptor> desc); + static MOZ_MUST_USE bool preventExtensions(JSContext* cx, + HandleDebuggerObject object); + static MOZ_MUST_USE bool seal(JSContext* cx, HandleDebuggerObject object); + static MOZ_MUST_USE bool freeze(JSContext* cx, HandleDebuggerObject object); + static MOZ_MUST_USE bool defineProperty(JSContext* cx, + HandleDebuggerObject object, + HandleId id, + Handle<PropertyDescriptor> desc); + static MOZ_MUST_USE bool defineProperties( + JSContext* cx, HandleDebuggerObject object, Handle<IdVector> ids, + Handle<PropertyDescriptorVector> descs); + static MOZ_MUST_USE bool deleteProperty(JSContext* cx, + HandleDebuggerObject object, + HandleId id, ObjectOpResult& result); + static MOZ_MUST_USE mozilla::Maybe<Completion> call( + JSContext* cx, HandleDebuggerObject object, HandleValue thisv, + Handle<ValueVector> args); + static MOZ_MUST_USE bool forceLexicalInitializationByName( + JSContext* cx, HandleDebuggerObject object, HandleId id, bool& result); + static MOZ_MUST_USE JS::Result<Completion> executeInGlobal( + JSContext* cx, HandleDebuggerObject object, + mozilla::Range<const char16_t> chars, HandleObject bindings, + const EvalOptions& options); + static MOZ_MUST_USE bool makeDebuggeeValue(JSContext* cx, + HandleDebuggerObject object, + HandleValue value, + MutableHandleValue result); + static MOZ_MUST_USE bool makeDebuggeeNativeFunction( + JSContext* cx, HandleDebuggerObject object, HandleValue value, + MutableHandleValue result); + static MOZ_MUST_USE bool isSameNative(JSContext* cx, + HandleDebuggerObject object, + HandleValue value, + MutableHandleValue result); + static MOZ_MUST_USE bool unsafeDereference(JSContext* cx, + HandleDebuggerObject object, + MutableHandleObject result); + static MOZ_MUST_USE bool unwrap(JSContext* cx, HandleDebuggerObject object, + MutableHandleDebuggerObject result); + + // Infallible properties + bool isCallable() const; + bool isFunction() const; + bool isDebuggeeFunction() const; + bool isBoundFunction() const; + bool isArrowFunction() const; + bool isAsyncFunction() const; + bool isGeneratorFunction() const; + bool isClassConstructor() const; + bool isGlobal() const; + bool isScriptedProxy() const; + bool isPromise() const; + bool isError() const; + JSAtom* name(JSContext* cx) const; + JSAtom* displayName(JSContext* cx) const; + JS::PromiseState promiseState() const; + double promiseLifetime() const; + double promiseTimeToResolution() const; + + bool isInstance() const; + Debugger* owner() const; + + JSObject* referent() const { + JSObject* obj = (JSObject*)getPrivate(); + MOZ_ASSERT(obj); + return obj; + } + + private: + enum { OWNER_SLOT }; + + static const unsigned RESERVED_SLOTS = 1; + + static const JSClassOps classOps_; + + static const JSPropertySpec properties_[]; + static const JSPropertySpec promiseProperties_[]; + static const JSFunctionSpec methods_[]; + + PromiseObject* promise() const; + + static MOZ_MUST_USE bool requireGlobal(JSContext* cx, + HandleDebuggerObject object); + static MOZ_MUST_USE bool requirePromise(JSContext* cx, + HandleDebuggerObject object); + static MOZ_MUST_USE bool construct(JSContext* cx, unsigned argc, Value* vp); + + struct CallData; + struct PromiseReactionRecordBuilder; + + static MOZ_MUST_USE bool getErrorReport(JSContext* cx, + HandleObject maybeError, + JSErrorReport*& report); +}; + +} /* namespace js */ + +#endif /* debugger_Object_h */ |