Change ecma_length_t and jerry_api_length_t from uint16_t to uint32_t.

JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
This commit is contained in:
Andrey Shitov
2015-06-29 18:37:27 +03:00
parent a0c5974ab8
commit c4b0cd2196
23 changed files with 74 additions and 81 deletions
@@ -151,7 +151,7 @@ ecma_op_create_arguments_object (ecma_object_t *func_obj_p, /**< callee function
}
JERRY_ASSERT (param_index == formal_params_number);
for (int32_t indx = formal_params_number - 1;
for (int32_t indx = (int32_t) formal_params_number - 1;
indx >= 0;
indx--)
{
@@ -161,7 +161,7 @@ ecma_op_create_arguments_object (ecma_object_t *func_obj_p, /**< callee function
// ii.
for (int32_t indx2 = indx + 1;
indx2 < formal_params_number;
indx2 < (int32_t) formal_params_number;
indx2++)
{
if (ecma_compare_ecma_strings (name_p, formal_params[indx2]))