Renaming ecma_compare_ecma_string_to_ecma_string to ecma_compare_ecma_strings.

This commit is contained in:
Ruben Ayrapetyan
2014-09-02 20:16:41 +04:00
parent 11d772fda4
commit 0a6e1a83f8
8 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -147,7 +147,7 @@ ecma_op_same_value (ecma_value_t x, /**< ecma-value */
ecma_string_t* x_str_p = ECMA_GET_POINTER(x.value);
ecma_string_t* y_str_p = ECMA_GET_POINTER(y.value);
return ecma_compare_ecma_string_to_ecma_string (x_str_p, y_str_p);
return ecma_compare_ecma_strings (x_str_p, y_str_p);
}
if (is_x_boolean)