Replacing const ecma_char_t* with ecma_string_t*; supporting number-represented string in ecma_string_t.

This commit is contained in:
Ruben Ayrapetyan
2014-08-18 18:32:16 +04:00
parent 15b65a27fb
commit 8bc41358ec
21 changed files with 229 additions and 219 deletions
+2 -2
View File
@@ -29,10 +29,10 @@
*/
extern ecma_reference_t ecma_op_get_identifier_reference (ecma_object_t *lex_env_p,
const ecma_char_t *name_p,
ecma_string_t *name_p,
bool is_strict);
extern ecma_reference_t ecma_make_reference (ecma_value_t base,
const ecma_char_t *name_p,
ecma_string_t *name_p,
bool is_strict);
extern void ecma_free_reference (const ecma_reference_t ref);