File tree Expand file tree Collapse file tree 2 files changed +0
-33
lines changed Expand file tree Collapse file tree 2 files changed +0
-33
lines changed Original file line number Diff line number Diff line change @@ -744,22 +744,6 @@ ecma_string_get_number_in_desc_size (const uint32_t uint32_number) /**< number i
744
744
return size ;
745
745
} /* ecma_string_get_number_in_desc_size */
746
746
747
- /**
748
- * Get size of container heap number of ecma-string
749
- *
750
- * Note: the number size and length are equal
751
- *
752
- * @return number of bytes in the buffer
753
- */
754
- static inline lit_utf8_size_t __attr_always_inline___
755
- ecma_string_get_heap_number_size (jmem_cpointer_t number_cp ) /**< Compressed pointer to an ecma_number_t */
756
- {
757
- const ecma_number_t * num_p = ECMA_GET_NON_NULL_POINTER (ecma_number_t , number_cp );
758
- lit_utf8_byte_t buffer [ECMA_MAX_CHARS_IN_STRINGIFIED_NUMBER ];
759
-
760
- return ecma_number_to_utf8_string (* num_p , buffer , sizeof (buffer ));
761
- } /* ecma_string_get_heap_number_size */
762
-
763
747
/**
764
748
* Checks whether the given string is a sequence of ascii characters.
765
749
*/
Original file line number Diff line number Diff line change @@ -340,23 +340,6 @@ ecma_get_property_list (const ecma_object_t *object_p) /**< object or lexical en
340
340
object_p -> property_list_or_bound_object_cp );
341
341
} /* ecma_get_property_list */
342
342
343
- /**
344
- * Set object's/lexical environment's property list.
345
- *
346
- * See also:
347
- * ecma_op_object_get_property_names
348
- */
349
- static inline void
350
- ecma_set_property_list (ecma_object_t * object_p , /**< object or lexical environment */
351
- ecma_property_header_t * property_list_p ) /**< properties' list */
352
- {
353
- JERRY_ASSERT (object_p != NULL );
354
- JERRY_ASSERT (!ecma_is_lexical_environment (object_p )
355
- || ecma_get_lex_env_type (object_p ) == ECMA_LEXICAL_ENVIRONMENT_DECLARATIVE );
356
-
357
- ECMA_SET_POINTER (object_p -> property_list_or_bound_object_cp , property_list_p );
358
- } /* ecma_set_property_list */
359
-
360
343
/**
361
344
* Get lexical environment's 'provideThis' property
362
345
*/
You can’t perform that action at this time.
0 commit comments