diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /js/src/builtin/Object.h | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'js/src/builtin/Object.h')
-rw-r--r-- | js/src/builtin/Object.h | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/js/src/builtin/Object.h b/js/src/builtin/Object.h new file mode 100644 index 000000000..09512be36 --- /dev/null +++ b/js/src/builtin/Object.h @@ -0,0 +1,87 @@ +/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- + * vim: set ts=8 sts=4 et sw=4 tw=99: + * 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 builtin_Object_h +#define builtin_Object_h + +#include "jsapi.h" + +#include "vm/NativeObject.h" + +namespace JS { +class CallArgs; +class Value; +} // namespace JS + +namespace js { + +// Object constructor native. Exposed only so the JIT can know its address. +MOZ_MUST_USE bool +obj_construct(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_propertyIsEnumerable(JSContext* cx, unsigned argc, Value* vp); + +MOZ_MUST_USE bool +obj_valueOf(JSContext* cx, unsigned argc, JS::Value* vp); + +PlainObject* +ObjectCreateImpl(JSContext* cx, HandleObject proto, NewObjectKind newKind = GenericObject, + HandleObjectGroup group = nullptr); + +PlainObject* +ObjectCreateWithTemplate(JSContext* cx, HandlePlainObject templateObj); + +// Object methods exposed so they can be installed in the self-hosting global. +MOZ_MUST_USE bool +obj_create(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_defineProperty(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_getOwnPropertyNames(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_getOwnPropertyDescriptor(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_getPrototypeOf(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_hasOwnProperty(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_isExtensible(JSContext* cx, unsigned argc, JS::Value* vp); + +MOZ_MUST_USE bool +obj_toString(JSContext* cx, unsigned argc, JS::Value* vp); + +// Exposed so SelfHosting.cpp can use it in the OwnPropertyKeys intrinsic +MOZ_MUST_USE bool +GetOwnPropertyKeys(JSContext* cx, const JS::CallArgs& args, unsigned flags); + +/* + * Like IdToValue, but convert int jsids to strings. This is used when + * exposing a jsid to script for Object.getOwnProperty{Names,Symbols} + * or scriptable proxy traps. + */ +MOZ_MUST_USE bool +IdToStringOrSymbol(JSContext* cx, JS::HandleId id, JS::MutableHandleValue result); + +#if JS_HAS_TOSOURCE +// Object.prototype.toSource. Function.prototype.toSource and uneval use this. +JSString* +ObjectToSource(JSContext* cx, JS::HandleObject obj); +#endif // JS_HAS_TOSOURCE + +extern MOZ_MUST_USE bool +WatchHandler(JSContext* cx, JSObject* obj, jsid id, const JS::Value& old, + JS::Value* nvp, void* closure); + +} /* namespace js */ + +#endif /* builtin_Object_h */ |