mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Back out e8764878be44, b2g/gcc4.4 bustage. r=orange
This commit is contained in:
parent
94646059fa
commit
cdaac4bbec
@ -2347,25 +2347,18 @@ inline int CheckIsNative(JSNative native);
|
||||
(static_cast<void>(sizeof(JS::detail::CheckIsNative(v))), \
|
||||
reinterpret_cast<To>(v))
|
||||
|
||||
#define JS_CHECK_ACCESSOR_FLAGS(flags) \
|
||||
(static_cast<mozilla::EnableIf<!((flags) & (JSPROP_READONLY | JSPROP_SHARED | JSPROP_NATIVE_ACCESSORS))>::Type>(0), \
|
||||
(flags))
|
||||
|
||||
/*
|
||||
* JSPropertySpec uses JSAPI JSPropertyOp and JSStrictPropertyOp in function
|
||||
* signatures. These macros encapsulate the definition of JSNative-backed
|
||||
* JSPropertySpecs, performing type-safe casts on the getter/setter functions
|
||||
* and adding the necessary property flags to trigger interpretation as
|
||||
* JSNatives.
|
||||
* signatures, but with JSPROP_NATIVE_ACCESSORS the actual values must be
|
||||
* JSNatives. To avoid widespread casting, have JS_PSG and JS_PSGS perform
|
||||
* type-safe casts.
|
||||
*/
|
||||
#define JS_PSG(name, getter, flags) \
|
||||
{name, 0, \
|
||||
JS_CHECK_ACCESSOR_FLAGS(flags) | JSPROP_SHARED | JSPROP_NATIVE_ACCESSORS, \
|
||||
{name, 0, (flags) | JSPROP_SHARED | JSPROP_NATIVE_ACCESSORS, \
|
||||
JSOP_WRAPPER(JS_CAST_NATIVE_TO(getter, JSPropertyOp)), \
|
||||
JSOP_NULLWRAPPER}
|
||||
#define JS_PSGS(name, getter, setter, flags) \
|
||||
{name, 0, \
|
||||
JS_CHECK_ACCESSOR_FLAGS(flags) | JSPROP_SHARED | JSPROP_NATIVE_ACCESSORS, \
|
||||
{name, 0, (flags) | JSPROP_SHARED | JSPROP_NATIVE_ACCESSORS, \
|
||||
JSOP_WRAPPER(JS_CAST_NATIVE_TO(getter, JSPropertyOp)), \
|
||||
JSOP_WRAPPER(JS_CAST_NATIVE_TO(setter, JSStrictPropertyOp))}
|
||||
#define JS_PS_END {0, 0, 0, JSOP_NULLWRAPPER, JSOP_NULLWRAPPER}
|
||||
|
@ -106,7 +106,7 @@ static const JSFunctionSpec pm_fns[] = {
|
||||
};
|
||||
|
||||
const uint8_t PM_PATTRS =
|
||||
JSPROP_ENUMERATE | JSPROP_PERMANENT;
|
||||
JSPROP_ENUMERATE | JSPROP_PERMANENT | JSPROP_SHARED;
|
||||
|
||||
#define GETTER(name) \
|
||||
JS_PSG(#name, pm_get_##name, PM_PATTRS)
|
||||
|
Loading…
x
Reference in New Issue
Block a user