Home
last modified time | relevance | path

Searched refs:CBC_CODE_FLAGS_GENERATOR (Results 1 – 4 of 4) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/operations/
Decma-function-object.c562 return (bytecode_data_p->status_flags & CBC_CODE_FLAGS_GENERATOR) != 0; in ecma_op_function_is_generator()
803 if (JERRY_UNLIKELY (status_flags & (CBC_CODE_FLAGS_CLASS_CONSTRUCTOR | CBC_CODE_FLAGS_GENERATOR))) in ecma_op_function_call_simple()
810 if ((status_flags & CBC_CODE_FLAGS_GENERATOR) && is_construct_call) in ecma_op_function_call_simple()
1325 if (byte_code_p->status_flags & CBC_CODE_FLAGS_GENERATOR) in ecma_op_lazy_instantiate_prototype_object()
/third_party/jerryscript/jerry-core/parser/js/
Dbyte-code.h818 CBC_CODE_FLAGS_GENERATOR = (1u << 11), /**< this function is a generator */ enumerator
Djs-parser.c688 if (compiled_code_p->status_flags & CBC_CODE_FLAGS_GENERATOR) in parse_print_final_cbc()
1333 compiled_code_p->status_flags |= CBC_CODE_FLAGS_GENERATOR; in parser_post_processing()
/third_party/jerryscript/jerry-core/vm/
Dvm.c486 else if (bytecode_p->status_flags & CBC_CODE_FLAGS_GENERATOR) in vm_construct_literal_object()