Skip to content

Commit 8858990

Browse files
zherczegyichoi
authored andcommitted
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 [email protected]
1 parent 66dddad commit 8858990

File tree

7 files changed

+137
-223
lines changed

7 files changed

+137
-223
lines changed

docs/02.API-REFERENCE.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,17 @@ Enum that contains the following elements:
1313

1414
## jerry_type_t
1515

16-
Enum that contains a set of elements to represent JavaScript type:
16+
Enum that contains JerryScript API value types:
1717

1818
- JERRY_TYPE_NONE - no type information
19-
- JERRY_TYPE_UNDEFINED - undefined value
20-
- JERRY_TYPE_NULL - null value
21-
- JERRY_TYPE_BOOLEAN - boolean value
22-
- JERRY_TYPE_NUMBER - number value
23-
- JERRY_TYPE_STRING - string value
24-
- JERRY_TYPE_OBJECT - object value
25-
- JERRY_TYPE_FUNCTION - function value
19+
- JERRY_TYPE_UNDEFINED - undefined type
20+
- JERRY_TYPE_NULL - null type
21+
- JERRY_TYPE_BOOLEAN - boolean type
22+
- JERRY_TYPE_NUMBER - number type
23+
- JERRY_TYPE_STRING - string type
24+
- JERRY_TYPE_OBJECT - object type
25+
- JERRY_TYPE_FUNCTION - function type
26+
- JERRY_TYPE_ERROR - error/abort type
2627

2728
## jerry_error_t
2829

0 commit comments

Comments
 (0)