File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
jerry-core/ecma/builtin-objects Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ ecma_instantiate_builtin (ecma_builtin_id_t obj_builtin_id) /**< built-in id */
342
342
JERRY_ASSERT (JERRY_CONTEXT (ecma_builtin_objects )[obj_builtin_id ] == NULL );
343
343
344
344
ecma_builtin_descriptor_t builtin_desc = ecma_builtin_descriptors [obj_builtin_id ];
345
- ecma_builtin_id_t object_prototype_builtin_id = (ecma_builtin_id_t ) builtin_desc >> ECMA_BUILTIN_PROTOTYPE_ID_SHIFT ;
345
+ ecma_builtin_id_t object_prototype_builtin_id = (ecma_builtin_id_t ) ( builtin_desc >> ECMA_BUILTIN_PROTOTYPE_ID_SHIFT ) ;
346
346
347
347
ecma_object_t * prototype_obj_p ;
348
348
@@ -360,7 +360,7 @@ ecma_instantiate_builtin (ecma_builtin_id_t obj_builtin_id) /**< built-in id */
360
360
JERRY_ASSERT (prototype_obj_p != NULL );
361
361
}
362
362
363
- ecma_object_type_t obj_type = (builtin_desc & ECMA_BUILTIN_OBJECT_TYPE_MASK );
363
+ ecma_object_type_t obj_type = (ecma_object_type_t ) ( builtin_desc & ECMA_BUILTIN_OBJECT_TYPE_MASK );
364
364
365
365
bool is_extended_built_in = (obj_type == ECMA_OBJECT_TYPE_CLASS
366
366
|| obj_type == ECMA_OBJECT_TYPE_ARRAY );
You can’t perform that action at this time.
0 commit comments