Introduce generic backtrace capturing (#4555)
Remove jerry_get_backtrace_from function JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
This commit is contained in:
@@ -151,6 +151,17 @@ typedef struct
|
||||
vm_frame_ctx_t frame_ctx; /**< frame context part */
|
||||
} vm_executable_object_t;
|
||||
|
||||
/**
|
||||
* Real backtrace frame data passed to the jerry_backtrace_callback_t handler.
|
||||
*/
|
||||
struct jerry_backtrace_frame_internal_t
|
||||
{
|
||||
vm_frame_ctx_t *context_p; /**< context pointer */
|
||||
uint8_t frame_type; /**< frame type */
|
||||
jerry_backtrace_location_t location; /**< location information */
|
||||
ecma_value_t function; /**< function reference */
|
||||
};
|
||||
|
||||
/**
|
||||
* @}
|
||||
* @}
|
||||
|
||||
Reference in New Issue
Block a user