Lines Matching defs:object
17 #include "ecma-array-object.h"
22 #include "ecma-function-object.h"
26 #include "ecma-iterator-object.h"
29 #include "ecma-promise-object.h"
30 #include "ecma-proxy-object.h"
124 * Update getter or setter for object literals.
128 ecma_value_t object, /**< object value */
132 ecma_object_t *object_p = ecma_get_object_from_value (object);
185 * Deletes an object property.
191 vm_op_delete_prop (ecma_value_t object, /**< base object */
196 if (ecma_is_value_undefined (object))
202 ecma_value_t check_coercible = ecma_op_check_object_coercible (object);
216 ecma_value_t obj_value = ecma_op_to_object (object);
278 ecma_value_t *result_obj_p) /**< expression object */
489 * 'VM_OC_APPEND_ARRAY' opcode handler, for setting array object properties
574 * Create an executable object using the current frame context
576 * @return executable object
628 /* Initial state is "not running", so all object references are released. */
643 * Resume the execution of an inactive executable object
648 opfunc_resume_executable_object (vm_executable_object_t *executable_object_p, /**< executable object */
746 * Create a Promise object if needed and resolve it with a value
748 * @return Promise object
847 * @return - new external function ecma-object
882 * Set the [[HomeObject]] attribute of the given functon object
885 opfunc_set_home_object (ecma_object_t *func_p, /**< function object */
925 * ClassDefinitionEvaluation object initialization part
985 return ecma_raise_type_error ("Property 'prototype' is not an object or null");
1046 opfunc_set_class_attributes (ecma_object_t *obj_p, /**< object */