Add conversion API functions

JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
László Langó
2016-06-15 15:10:57 +02:00
parent 8e8504244b
commit 65542549af
2 changed files with 55 additions and 0 deletions
+3
View File
@@ -140,6 +140,9 @@ jerry_object_t *jerry_get_object_value (const jerry_value_t);
/**
* Converters of 'jerry_value_t'
*/
bool jerry_value_to_boolean (const jerry_value_t);
jerry_value_t jerry_value_to_number (const jerry_value_t);
jerry_value_t jerry_value_to_object (const jerry_value_t);
jerry_value_t jerry_value_to_string (const jerry_value_t);
/**