@@ -612,7 +612,7 @@ Possible values:
612
612
- JERRY_PROMISE_STATE_FULFILLED - Promise is in "Fulfilled" state.
613
613
- JERRY_PROMISE_STATE_REJECTED - Promise is in "Rejected" state.
614
614
615
- *New in version [NEXT VERSION] *.
615
+ *New in version 2.2 *.
616
616
617
617
**See also**
618
618
@@ -3282,7 +3282,7 @@ jerry_get_promise_result (const jerry_value_t promise);
3282
3282
- A TypeError is returned if the input argument was not a Promise object or
3283
3283
the Promise support was not built into the library.
3284
3284
3285
- *New in version [NEXT VERSION] *.
3285
+ *New in version 2.2 *.
3286
3286
3287
3287
**Example**
3288
3288
@@ -3348,7 +3348,7 @@ jerry_get_promise_state (const jerry_value_t promise);
3348
3348
- `JERRY_PROMISE_STATE_NONE` is returned if the input argument was not a promise object or
3349
3349
the Promise support was not built into the library.
3350
3350
3351
- *New in version [NEXT VERSION] *.
3351
+ *New in version 2.2 *.
3352
3352
3353
3353
**Example**
3354
3354
@@ -4871,6 +4871,8 @@ jerry_has_internal_property (const jerry_value_t obj_val,
4871
4871
- true, if the property exists
4872
4872
- false, otherwise
4873
4873
4874
+ *New in version 2.2*.
4875
+
4874
4876
**Example**
4875
4877
4876
4878
[doctest]: # ()
@@ -5014,6 +5016,8 @@ jerry_delete_internal_property (const jerry_value_t obj_val,
5014
5016
- true, if property was deleted successfully
5015
5017
- false, otherwise
5016
5018
5019
+ *New in version 2.2*.
5020
+
5017
5021
**Example**
5018
5022
5019
5023
```c
@@ -5174,6 +5178,8 @@ jerry_get_internal_property (const jerry_value_t obj_val,
5174
5178
- undefined value, if the, if the internal does not property exists
5175
5179
- thrown error, otherwise
5176
5180
5181
+ *New in version 2.2*.
5182
+
5177
5183
**Example**
5178
5184
5179
5185
[doctest]: # ()
@@ -5351,6 +5357,8 @@ jerry_set_internal_property (const jerry_value_t obj_val,
5351
5357
- true, if success
5352
5358
- thrown error, otherwise
5353
5359
5360
+ *New in version 2.2*.
5361
+
5354
5362
**Example**
5355
5363
5356
5364
[doctest]: # ()
@@ -7584,6 +7592,8 @@ jerry_get_resource_name (jerry_value_t value);
7584
7592
- resource name of the function object, if the given value is a function object
7585
7593
- "<anonymous>", otherwise
7586
7594
7595
+ *New in version 2.2*.
7596
+
7587
7597
**Example**
7588
7598
7589
7599
[doctest]: # (name="02.API-REFERENCE-jsresourcename.c")
@@ -8034,6 +8044,8 @@ jerry_is_arraybuffer_detachable (const jerry_value_t value);
8034
8044
- boolean value if success
8035
8045
- Error otherwise
8036
8046
8047
+ *New in version 2.2*.
8048
+
8037
8049
**Example**
8038
8050
8039
8051
```c
@@ -8075,6 +8087,8 @@ jerry_detach_arraybuffer (const jerry_value_t value);
8075
8087
- null value if success
8076
8088
- Error otherwise
8077
8089
8090
+ *New in version 2.2*.
8091
+
8078
8092
**Example**
8079
8093
8080
8094
```c
0 commit comments