V8 Project
|
An event details object passed to the debug event listener. More...
#include <v8-debug.h>
Public Member Functions | |
virtual DebugEvent | GetEvent () const =0 |
Event type. More... | |
virtual Handle< Object > | GetExecutionState () const =0 |
Access to execution state and event data of the debug event. More... | |
virtual Handle< Object > | GetEventData () const =0 |
virtual Handle< Context > | GetEventContext () const =0 |
Get the context active when the debug event happened. More... | |
virtual Handle< Value > | GetCallbackData () const =0 |
Client data passed with the corresponding callback when it was registered. More... | |
virtual ClientData * | GetClientData () const =0 |
Client data passed to DebugBreakForCommand function. More... | |
virtual | ~EventDetails () |
An event details object passed to the debug event listener.
Definition at line 97 of file v8-debug.h.
|
inlinevirtual |
Definition at line 131 of file v8-debug.h.
Client data passed with the corresponding callback when it was registered.
Implemented in v8::internal::EventDetailsImpl.
|
pure virtual |
Client data passed to DebugBreakForCommand function.
The debugger takes ownership of the data and will delete it even if there is no message handler.
Implemented in v8::internal::EventDetailsImpl.
|
pure virtual |
Event type.
Implemented in v8::internal::EventDetailsImpl.
Referenced by v8::HandleDebugEvent().
Get the context active when the debug event happened.
Note this is not the current active context as the JavaScript part of the debugger is running in its own context which is entered at this point.
Implemented in v8::internal::EventDetailsImpl.
Implemented in v8::internal::EventDetailsImpl.
Referenced by v8::HandleDebugEvent().
Access to execution state and event data of the debug event.
Don't store these cross callbacks as their content becomes invalid.
Implemented in v8::internal::EventDetailsImpl.
Referenced by v8::HandleDebugEvent().