Home
last modified time | relevance | path

Searched refs:CBC_CODE_FLAGS_ARROW_FUNCTION (Results 1 – 5 of 5) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c821 if (JERRY_UNLIKELY (status_flags & CBC_CODE_FLAGS_ARROW_FUNCTION)) in ecma_op_function_call_simple()
1240 if (byte_code_p->status_flags & (CBC_CODE_FLAGS_ARROW_FUNCTION | CBC_CODE_FLAGS_ACCESSOR)) in ecma_op_function_construct()
1242 if (byte_code_p->status_flags & CBC_CODE_FLAGS_ARROW_FUNCTION) in ecma_op_function_construct()
1332 else if (byte_code_p->status_flags & (CBC_CODE_FLAGS_ARROW_FUNCTION | CBC_CODE_FLAGS_ACCESSOR)) in ecma_op_lazy_instantiate_prototype_object()
1622 if (bytecode_data_p->status_flags & (CBC_CODE_FLAGS_ARROW_FUNCTION | CBC_CODE_FLAGS_ACCESSOR)) in ecma_op_function_list_lazy_property_names()
/third_party/jerryscript/jerry-core/ecma/base/
Decma-gc.c716 if (byte_code_p->status_flags & CBC_CODE_FLAGS_ARROW_FUNCTION) in ecma_gc_mark()
1234 if (byte_code_p->status_flags & CBC_CODE_FLAGS_ARROW_FUNCTION) in ecma_gc_free_object()
/third_party/jerryscript/jerry-core/parser/js/
Dbyte-code.h814 CBC_CODE_FLAGS_ARROW_FUNCTION = (1u << 7), /**< this function is an arrow function */ enumerator
Djs-parser.c678 if (compiled_code_p->status_flags & CBC_CODE_FLAGS_ARROW_FUNCTION) in parse_print_final_cbc()
1323 compiled_code_p->status_flags |= CBC_CODE_FLAGS_ARROW_FUNCTION; in parser_post_processing()
/third_party/jerryscript/jerry-core/vm/
Dvm.c480 if (bytecode_p->status_flags & CBC_CODE_FLAGS_ARROW_FUNCTION) in vm_construct_literal_object()