v8
4.5.103 (node 4.8.7)
V8 is Google's open source JavaScript engine
|
#include <v8-debug.h>
Public Member Functions | |
virtual bool | IsEvent () const =0 |
virtual bool | IsResponse () const =0 |
virtual DebugEvent | GetEvent () const =0 |
virtual bool | WillStartRunning () const =0 |
virtual Local< Object > | GetExecutionState () const =0 |
virtual Local< Object > | GetEventData () const =0 |
virtual Local< String > | GetJSON () const =0 |
virtual Local< Context > | GetEventContext () const =0 |
virtual ClientData * | GetClientData () const =0 |
virtual Isolate * | GetIsolate () const =0 |
virtual | ~Message () |
A message object passed to the debug message handler.
Definition at line 43 of file v8-debug.h.
|
inlinevirtual |
Definition at line 89 of file v8-debug.h.
|
pure virtual |
Client data passed with the corresponding request if any. This is the client_data data value passed into Debug::SendCommand along with the request that led to the message or NULL if the message is an event. The debugger takes ownership of the data and will delete it even if there is no message handler.
|
pure virtual |
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.
Access to execution state and event data. Don't store these cross callbacks as their content becomes invalid. These objects are from the debugger event that started the debug message loop.
|
pure virtual |
|
pure virtual |
Check type of message.
|
pure virtual |
|
pure virtual |
Indicate whether this is a response to a continue command which will start the VM running after this is processed.