Update the name handling of anonymous functions to ES11 (#4279)
JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai daniel.batyai@h-lab.eu
This commit is contained in:
@@ -277,6 +277,12 @@ void * JERRY_ATTR_PURE jmem_decompress_pointer (uintptr_t compressed_pointer);
|
||||
#define JMEM_CP_GET_NON_NULL_POINTER_FROM_POINTER_TAG(type, cp_value) \
|
||||
((type *) (jmem_decompress_pointer ((cp_value & ~JMEM_TAG_MASK) >> JMEM_TAG_SHIFT)))
|
||||
|
||||
/**
|
||||
* Extract tag bits from pointer-tag value
|
||||
*/
|
||||
#define JMEM_CP_GET_POINTER_TAG_BITS(cp_value) \
|
||||
(cp_value & (JMEM_FIRST_TAG_BIT_MASK | JMEM_SECOND_TAG_BIT_MASK | JMEM_THIRD_TAG_BIT_MASK))
|
||||
|
||||
/**
|
||||
* Get value of each tag from specified pointer-tag value
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user