Add core unicode functionality.
Add utf-8 processing routines. Change ecma_char_t from char/uint16_t to uint16_t. Apply all utf-8 processing routines. Change char to jerry_api_char in API functions' declarations. JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
This commit is contained in:
@@ -19,8 +19,8 @@
|
||||
#include "jrt.h"
|
||||
|
||||
void parser_set_show_opcodes (bool);
|
||||
bool parser_parse_script (const char *, size_t, const opcode_t **);
|
||||
bool parser_parse_eval (const char *, size_t, bool, const opcode_t **);
|
||||
bool parser_parse_new_function (const char **, size_t, const opcode_t **);
|
||||
bool parser_parse_script (const jerry_api_char_t *, size_t, const opcode_t **);
|
||||
bool parser_parse_eval (const jerry_api_char_t *, size_t, bool, const opcode_t **);
|
||||
bool parser_parse_new_function (const jerry_api_char_t **, const size_t *, size_t, const opcode_t **);
|
||||
|
||||
#endif /* PARSER_H */
|
||||
|
||||
Reference in New Issue
Block a user