mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 992472 - Remove self-hosting macros ARRAY_PUSH and ARRAY_SLICE. r=efaust
This commit is contained in:
parent
3192733cf9
commit
2fcb6a35ed
@ -19,12 +19,6 @@
|
|||||||
#define FUN_APPLY(FUN, RECEIVER, ARGS) \
|
#define FUN_APPLY(FUN, RECEIVER, ARGS) \
|
||||||
callFunction(std_Function_apply, FUN, RECEIVER, ARGS)
|
callFunction(std_Function_apply, FUN, RECEIVER, ARGS)
|
||||||
|
|
||||||
// Unforgeable versions of ARRAY.push(ELEMENT) and ARRAY.slice.
|
|
||||||
#define ARRAY_PUSH(ARRAY, ELEMENT) \
|
|
||||||
callFunction(std_Array_push, ARRAY, ELEMENT);
|
|
||||||
#define ARRAY_SLICE(ARRAY, ELEMENT) \
|
|
||||||
callFunction(std_Array_slice, ARRAY, ELEMENT);
|
|
||||||
|
|
||||||
// Property descriptor attributes.
|
// Property descriptor attributes.
|
||||||
#define ATTR_ENUMERABLE 0x01
|
#define ATTR_ENUMERABLE 0x01
|
||||||
#define ATTR_CONFIGURABLE 0x02
|
#define ATTR_CONFIGURABLE 0x02
|
||||||
|
Loading…
Reference in New Issue
Block a user