Introducing ecma_string_t type that will be used for ecma-strings instead of ecma_array_first_chunk_t.

This commit is contained in:
Ruben Ayrapetyan
2014-08-13 16:59:45 +04:00
parent 567d54f7e5
commit b66981d19f
2 changed files with 48 additions and 0 deletions
+1
View File
@@ -47,6 +47,7 @@ JERRY_STATIC_ASSERT(sizeof (ecma_object_t) <= 2 * sizeof (uint64_t));
JERRY_STATIC_ASSERT(sizeof (ecma_array_header_t) <= sizeof (uint32_t));
JERRY_STATIC_ASSERT(sizeof (ecma_array_first_chunk_t) == sizeof (uint64_t));
JERRY_STATIC_ASSERT(sizeof (ecma_array_non_first_chunk_t) == sizeof (uint64_t));
JERRY_STATIC_ASSERT(sizeof (ecma_string_t) == sizeof (uint64_t));
JERRY_STATIC_ASSERT(sizeof (ecma_completion_value_t) == sizeof (uint32_t));
/**