aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorZoltan Herczeg <zherczeg.u-szeged@partner.samsung.com>2018-07-19 03:13:40 +0200
committeryichoi <duddlf.choi@samsung.com>2018-07-19 10:13:40 +0900
commit88589902e2ae5abbcac6328d987b63fa8dfd2e27 (patch)
tree13fa1277c4bee140a376bc2394a6856d060ba615 /docs
parent66dddadfd2328f203cbb2db8393a1dbc4dd30c1c (diff)
Remove jerry_get_arg_value function. (#2425)
Remove automatic conversion of errors. Errors are primary values, just like numbers or strings. JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
Diffstat (limited to 'docs')
-rw-r--r--docs/02.API-REFERENCE.md17
1 files changed, 9 insertions, 8 deletions
diff --git a/docs/02.API-REFERENCE.md b/docs/02.API-REFERENCE.md
index c4c5c7a4..0a232953 100644
--- a/docs/02.API-REFERENCE.md
+++ b/docs/02.API-REFERENCE.md
@@ -13,16 +13,17 @@ Enum that contains the following elements:
## jerry_type_t
-Enum that contains a set of elements to represent JavaScript type:
+Enum that contains JerryScript API value types:
- JERRY_TYPE_NONE - no type information
- - JERRY_TYPE_UNDEFINED - undefined value
- - JERRY_TYPE_NULL - null value
- - JERRY_TYPE_BOOLEAN - boolean value
- - JERRY_TYPE_NUMBER - number value
- - JERRY_TYPE_STRING - string value
- - JERRY_TYPE_OBJECT - object value
- - JERRY_TYPE_FUNCTION - function value
+ - JERRY_TYPE_UNDEFINED - undefined type
+ - JERRY_TYPE_NULL - null type
+ - JERRY_TYPE_BOOLEAN - boolean type
+ - JERRY_TYPE_NUMBER - number type
+ - JERRY_TYPE_STRING - string type
+ - JERRY_TYPE_OBJECT - object type
+ - JERRY_TYPE_FUNCTION - function type
+ - JERRY_TYPE_ERROR - error/abort type
## jerry_error_t