Small improvements for type property support. (#1724)
JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
This commit is contained in:
@@ -3312,13 +3312,13 @@ Users can check the pointer's type before processing it.
|
||||
```c
|
||||
bool
|
||||
jerry_get_object_native_pointer (const jerry_value_t obj_val,
|
||||
void **out_native_p,
|
||||
const jerry_object_native_info_t **out_info_p)
|
||||
void **out_native_pointer_p,
|
||||
const jerry_object_native_info_t **out_native_info_p)
|
||||
```
|
||||
|
||||
- `obj_val` - object value to get native pointer from.
|
||||
- `out_native_p` - native pointer (output parameter).
|
||||
- `out_info_p` - native pointer's type infomation (output parameter).
|
||||
- `out_native_pointer_p` - native pointer (output parameter).
|
||||
- `out_native_info_p` - native pointer's type infomation (output parameter).
|
||||
- return value
|
||||
- true, if there is native pointer associated with the object
|
||||
- false, otherwise
|
||||
|
||||
Reference in New Issue
Block a user