Replacing ecma_array_first_chunk_t with ecma_string_t for ecma-strings.

This commit is contained in:
Ruben Ayrapetyan
2014-08-13 19:21:21 +04:00
parent 871c36feb7
commit c831912ae5
10 changed files with 318 additions and 179 deletions
+2 -2
View File
@@ -491,7 +491,7 @@ typedef uint16_t ecma_length_t;
typedef struct
{
/** Compressed pointer to next chunk */
uint16_t next_chunk_p;
uint16_t next_chunk_cp;
/** Number of elements in the Array */
ecma_length_t unit_number;
@@ -515,7 +515,7 @@ typedef struct
typedef struct
{
/** Compressed pointer to next chunk */
uint16_t next_chunk_p;
uint16_t next_chunk_cp;
/** Characters */
uint8_t data[ sizeof (uint64_t) - sizeof (uint16_t) ];