Session

@JSImport("inspector", "Session") @native @JSType class Session() extends StObject

The inspector.Session is used for dispatching messages to the V8 inspector back-end and receiving message responses and notifications.

trait StObject
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Concrete methods

def addListener(event: String, listener: Function1[Any, Unit]): Session
@JSName("addListener")

Issued when new console message is added.

Issued when new console message is added.

@JSName("addListener")

Fired when breakpoint is resolved to an actual script and location.

Fired when breakpoint is resolved to an actual script and location.

@JSName("addListener")

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

@JSName("addListener")
def addListener_Debuggerresumed(event: DebuggerDotresumed, listener: Function0[Unit]): Session

Fired when the virtual machine resumed execution.

Fired when the virtual machine resumed execution.

@JSName("addListener")

Fired when virtual machine fails to parse the script.

Fired when virtual machine fails to parse the script.

@JSName("addListener")

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

@JSName("addListener")

If heap objects tracking has been started then backend may send update for one or more fragments

If heap objects tracking has been started then backend may send update for one or more fragments

@JSName("addListener")

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

@JSName("addListener")
@JSName("addListener")

Sent when new profile recording is started using console.profile() call.

Sent when new profile recording is started using console.profile() call.

@JSName("addListener")

Issued when console API was called.

Issued when console API was called.

@JSName("addListener")

Issued when unhandled exception was revoked.

Issued when unhandled exception was revoked.

@JSName("addListener")

Issued when exception was thrown and unhandled.

Issued when exception was thrown and unhandled.

@JSName("addListener")

Issued when new execution context is created.

Issued when new execution context is created.

@JSName("addListener")

Issued when execution context is destroyed.

Issued when execution context is destroyed.

@JSName("addListener")

Issued when all executionContexts were cleared in browser

Issued when all executionContexts were cleared in browser

@JSName("addListener")

Issued when object should be inspected (for example, as a result of inspect() command line API call).

Issued when object should be inspected (for example, as a result of inspect() command line API call).

@JSName("addListener")

Emitted when any notification from the V8 Inspector is received.

Emitted when any notification from the V8 Inspector is received.

def connect(): Unit

Connects a session to the inspector back-end. An exception will be thrown if there is already a connected session established either through the API or by a front-end connected to the Inspector WebSocket port.

Connects a session to the inspector back-end. An exception will be thrown if there is already a connected session established either through the API or by a front-end connected to the Inspector WebSocket port.

def disconnect(): Unit

Immediately close the session. All pending message callbacks will be called with an error. session.connect() will need to be called to be able to send messages again. Reconnected session will lose all inspector state, such as enabled agents or configured breakpoints.

Immediately close the session. All pending message callbacks will be called with an error. session.connect() will need to be called to be able to send messages again. Reconnected session will lose all inspector state, such as enabled agents or configured breakpoints.

def emit(event: String, args: Any*): Boolean
def emit(event: Symbol, args: Any*): Boolean
@JSName("emit")
@JSName("emit")
@JSName("emit")
def on(event: String, listener: Function1[Any, Unit]): Session
@JSName("on")

Issued when new console message is added.

Issued when new console message is added.

@JSName("on")

Fired when breakpoint is resolved to an actual script and location.

Fired when breakpoint is resolved to an actual script and location.

@JSName("on")

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

@JSName("on")
def on_Debuggerresumed(event: DebuggerDotresumed, listener: Function0[Unit]): Session

Fired when the virtual machine resumed execution.

Fired when the virtual machine resumed execution.

@JSName("on")

Fired when virtual machine fails to parse the script.

Fired when virtual machine fails to parse the script.

@JSName("on")

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

@JSName("on")

If heap objects tracking has been started then backend may send update for one or more fragments

If heap objects tracking has been started then backend may send update for one or more fragments

@JSName("on")

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

@JSName("on")
def on_HeapProfilerresetProfiles(event: HeapProfilerDotresetProfiles, listener: Function0[Unit]): Session
@JSName("on")

Sent when new profile recording is started using console.profile() call.

Sent when new profile recording is started using console.profile() call.

@JSName("on")

Issued when console API was called.

Issued when console API was called.

@JSName("on")

Issued when unhandled exception was revoked.

Issued when unhandled exception was revoked.

@JSName("on")

Issued when exception was thrown and unhandled.

Issued when exception was thrown and unhandled.

@JSName("on")

Issued when new execution context is created.

Issued when new execution context is created.

@JSName("on")

Issued when execution context is destroyed.

Issued when execution context is destroyed.

@JSName("on")

Issued when all executionContexts were cleared in browser

Issued when all executionContexts were cleared in browser

@JSName("on")

Issued when object should be inspected (for example, as a result of inspect() command line API call).

Issued when object should be inspected (for example, as a result of inspect() command line API call).

@JSName("on")
def on_inspectorNotification(event: inspectorNotification, listener: Function1[InspectorNotification[Object], Unit]): Session

Emitted when any notification from the V8 Inspector is received.

Emitted when any notification from the V8 Inspector is received.

def once(event: String, listener: Function1[Any, Unit]): Session
@JSName("once")

Issued when new console message is added.

Issued when new console message is added.

@JSName("once")

Fired when breakpoint is resolved to an actual script and location.

Fired when breakpoint is resolved to an actual script and location.

@JSName("once")

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

@JSName("once")
def once_Debuggerresumed(event: DebuggerDotresumed, listener: Function0[Unit]): Session

Fired when the virtual machine resumed execution.

Fired when the virtual machine resumed execution.

@JSName("once")

Fired when virtual machine fails to parse the script.

Fired when virtual machine fails to parse the script.

@JSName("once")

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

@JSName("once")

If heap objects tracking has been started then backend may send update for one or more fragments

If heap objects tracking has been started then backend may send update for one or more fragments

@JSName("once")

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

@JSName("once")
@JSName("once")

Sent when new profile recording is started using console.profile() call.

Sent when new profile recording is started using console.profile() call.

@JSName("once")

Issued when console API was called.

Issued when console API was called.

@JSName("once")

Issued when unhandled exception was revoked.

Issued when unhandled exception was revoked.

@JSName("once")

Issued when exception was thrown and unhandled.

Issued when exception was thrown and unhandled.

@JSName("once")

Issued when new execution context is created.

Issued when new execution context is created.

@JSName("once")

Issued when execution context is destroyed.

Issued when execution context is destroyed.

@JSName("once")

Issued when all executionContexts were cleared in browser

Issued when all executionContexts were cleared in browser

@JSName("once")

Issued when object should be inspected (for example, as a result of inspect() command line API call).

Issued when object should be inspected (for example, as a result of inspect() command line API call).

@JSName("once")
def once_inspectorNotification(event: inspectorNotification, listener: Function1[InspectorNotification[Object], Unit]): Session

Emitted when any notification from the V8 Inspector is received.

Emitted when any notification from the V8 Inspector is received.

def post(method: String): Unit

Posts a message to the inspector back-end. callback will be notified when a response is received. callback is a function that accepts two optional arguments - error and message-specific result.

Posts a message to the inspector back-end. callback will be notified when a response is received. callback is a function that accepts two optional arguments - error and message-specific result.

def post(method: String, callback: Function2[Error | Null, UndefOr[Object], Unit]): Unit
def post(method: String, params: Object): Unit
def post(method: String, params: Object, callback: Function2[Error | Null, UndefOr[Object], Unit]): Unit
def post(method: String, params: Unit, callback: Function2[Error | Null, UndefOr[Object], Unit]): Unit
@JSName("post")

Does nothing.

Does nothing.

@JSName("post")
def post_ConsoleclearMessages(method: ConsoleDotclearMessages, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Disables console domain, prevents further console messages from being reported to the client.

Disables console domain, prevents further console messages from being reported to the client.

@JSName("post")
def post_Consoledisable(method: ConsoleDotdisable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification.

Enables console domain, sends the messages collected so far to the client by means of the <code>messageAdded</code> notification.

@JSName("post")
def post_Consoleenable(method: ConsoleDotenable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Continues execution until specific location is reached.

Continues execution until specific location is reached.

@JSName("post")
def post_DebuggercontinueToLocation(method: DebuggerDotcontinueToLocation, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggercontinueToLocation(method: DebuggerDotcontinueToLocation, params: ContinueToLocationParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggercontinueToLocation(method: DebuggerDotcontinueToLocation, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Disables debugger for given page.

Disables debugger for given page.

@JSName("post")
def post_Debuggerdisable(method: DebuggerDotdisable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.

Enables debugger for the given page. Clients should not assume that the debugging has been enabled until the result for this command is received.

@JSName("post")
def post_Debuggerenable(method: DebuggerDotenable, callback: Function2[Error | Null, EnableReturnType, Unit]): Unit
@JSName("post")

Evaluates expression on a given call frame.

Evaluates expression on a given call frame.

@JSName("post")
def post_DebuggerevaluateOnCallFrame(method: DebuggerDotevaluateOnCallFrame, callback: Function2[Error | Null, EvaluateOnCallFrameReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
def post_DebuggerevaluateOnCallFrame(method: DebuggerDotevaluateOnCallFrame, params: Unit, callback: Function2[Error | Null, EvaluateOnCallFrameReturnType, Unit]): Unit
@JSName("post")

Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

Returns possible locations for breakpoint. scriptId in start and end range locations should be the same.

@JSName("post")
@JSName("post")
@JSName("post")
@JSName("post")
def post_DebuggergetPossibleBreakpoints(method: DebuggerDotgetPossibleBreakpoints, params: Unit, callback: Function2[Error | Null, GetPossibleBreakpointsReturnType, Unit]): Unit
@JSName("post")

Returns source for the script with given id.

Returns source for the script with given id.

@JSName("post")
def post_DebuggergetScriptSource(method: DebuggerDotgetScriptSource, callback: Function2[Error | Null, GetScriptSourceReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggergetScriptSource(method: DebuggerDotgetScriptSource, params: GetScriptSourceParameterType, callback: Function2[Error | Null, GetScriptSourceReturnType, Unit]): Unit
@JSName("post")
def post_DebuggergetScriptSource(method: DebuggerDotgetScriptSource, params: Unit, callback: Function2[Error | Null, GetScriptSourceReturnType, Unit]): Unit
@JSName("post")

Returns stack trace with given <code>stackTraceId</code>.

Returns stack trace with given <code>stackTraceId</code>.

@JSName("post")
def post_DebuggergetStackTrace(method: DebuggerDotgetStackTrace, callback: Function2[Error | Null, GetStackTraceReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggergetStackTrace(method: DebuggerDotgetStackTrace, params: GetStackTraceParameterType, callback: Function2[Error | Null, GetStackTraceReturnType, Unit]): Unit
@JSName("post")
def post_DebuggergetStackTrace(method: DebuggerDotgetStackTrace, params: Unit, callback: Function2[Error | Null, GetStackTraceReturnType, Unit]): Unit
@JSName("post")

Stops on the next JavaScript statement.

Stops on the next JavaScript statement.

@JSName("post")
def post_Debuggerpause(method: DebuggerDotpause, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggerpauseOnAsyncCall(method: DebuggerDotpauseOnAsyncCall, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggerpauseOnAsyncCall(method: DebuggerDotpauseOnAsyncCall, params: PauseOnAsyncCallParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggerpauseOnAsyncCall(method: DebuggerDotpauseOnAsyncCall, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Removes JavaScript breakpoint.

Removes JavaScript breakpoint.

@JSName("post")
def post_DebuggerremoveBreakpoint(method: DebuggerDotremoveBreakpoint, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggerremoveBreakpoint(method: DebuggerDotremoveBreakpoint, params: RemoveBreakpointParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggerremoveBreakpoint(method: DebuggerDotremoveBreakpoint, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Restarts particular call frame from the beginning.

Restarts particular call frame from the beginning.

@JSName("post")
def post_DebuggerrestartFrame(method: DebuggerDotrestartFrame, callback: Function2[Error | Null, RestartFrameReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggerrestartFrame(method: DebuggerDotrestartFrame, params: RestartFrameParameterType, callback: Function2[Error | Null, RestartFrameReturnType, Unit]): Unit
@JSName("post")
def post_DebuggerrestartFrame(method: DebuggerDotrestartFrame, params: Unit, callback: Function2[Error | Null, RestartFrameReturnType, Unit]): Unit
@JSName("post")

Resumes JavaScript execution.

Resumes JavaScript execution.

@JSName("post")
def post_Debuggerresume(method: DebuggerDotresume, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called.

This method is deprecated - use Debugger.stepInto with breakOnAsyncCall and Debugger.pauseOnAsyncTask instead. Steps into next scheduled async task if any is scheduled before next pause. Returns success when async task is actually scheduled, returns error if no task were scheduled or another scheduleStepIntoAsync was called.

@JSName("post")
def post_DebuggerscheduleStepIntoAsync(method: DebuggerDotscheduleStepIntoAsync, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Searches for given string in script content.

Searches for given string in script content.

@JSName("post")
def post_DebuggersearchInContent(method: DebuggerDotsearchInContent, callback: Function2[Error | Null, SearchInContentReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersearchInContent(method: DebuggerDotsearchInContent, params: SearchInContentParameterType, callback: Function2[Error | Null, SearchInContentReturnType, Unit]): Unit
@JSName("post")
def post_DebuggersearchInContent(method: DebuggerDotsearchInContent, params: Unit, callback: Function2[Error | Null, SearchInContentReturnType, Unit]): Unit
@JSName("post")

Enables or disables async call stacks tracking.

Enables or disables async call stacks tracking.

@JSName("post")
def post_DebuggersetAsyncCallStackDepth(method: DebuggerDotsetAsyncCallStackDepth, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetAsyncCallStackDepth(method: DebuggerDotsetAsyncCallStackDepth, params: SetAsyncCallStackDepthParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetAsyncCallStackDepth(method: DebuggerDotsetAsyncCallStackDepth, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.

Replace previous blackbox patterns with passed ones. Forces backend to skip stepping/pausing in scripts with url matching one of the patterns. VM will try to leave blackboxed script by performing 'step in' several times, finally resorting to 'step out' if unsuccessful.

@JSName("post")
def post_DebuggersetBlackboxPatterns(method: DebuggerDotsetBlackboxPatterns, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetBlackboxPatterns(method: DebuggerDotsetBlackboxPatterns, params: SetBlackboxPatternsParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetBlackboxPatterns(method: DebuggerDotsetBlackboxPatterns, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.

Makes backend skip steps in the script in blackboxed ranges. VM will try leave blacklisted scripts by performing 'step in' several times, finally resorting to 'step out' if unsuccessful. Positions array contains positions where blackbox state is changed. First interval isn't blackboxed. Array should be sorted.

@JSName("post")
def post_DebuggersetBlackboxedRanges(method: DebuggerDotsetBlackboxedRanges, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetBlackboxedRanges(method: DebuggerDotsetBlackboxedRanges, params: SetBlackboxedRangesParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetBlackboxedRanges(method: DebuggerDotsetBlackboxedRanges, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Sets JavaScript breakpoint at a given location.

Sets JavaScript breakpoint at a given location.

@JSName("post")
def post_DebuggersetBreakpoint(method: DebuggerDotsetBreakpoint, callback: Function2[Error | Null, SetBreakpointReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetBreakpoint(method: DebuggerDotsetBreakpoint, params: SetBreakpointParameterType, callback: Function2[Error | Null, SetBreakpointReturnType, Unit]): Unit
@JSName("post")
def post_DebuggersetBreakpoint(method: DebuggerDotsetBreakpoint, params: Unit, callback: Function2[Error | Null, SetBreakpointReturnType, Unit]): Unit
@JSName("post")

Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in <code>locations</code> property. Further matching script parsing will result in subsequent <code>breakpointResolved</code> events issued. This logical breakpoint will survive page reloads.

Sets JavaScript breakpoint at given location specified either by URL or URL regex. Once this command is issued, all existing parsed scripts will have breakpoints resolved and returned in <code>locations</code> property. Further matching script parsing will result in subsequent <code>breakpointResolved</code> events issued. This logical breakpoint will survive page reloads.

@JSName("post")
def post_DebuggersetBreakpointByUrl(method: DebuggerDotsetBreakpointByUrl, callback: Function2[Error | Null, SetBreakpointByUrlReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
def post_DebuggersetBreakpointByUrl(method: DebuggerDotsetBreakpointByUrl, params: Unit, callback: Function2[Error | Null, SetBreakpointByUrlReturnType, Unit]): Unit
@JSName("post")

Activates / deactivates all breakpoints on the page.

Activates / deactivates all breakpoints on the page.

@JSName("post")
def post_DebuggersetBreakpointsActive(method: DebuggerDotsetBreakpointsActive, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetBreakpointsActive(method: DebuggerDotsetBreakpointsActive, params: SetBreakpointsActiveParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetBreakpointsActive(method: DebuggerDotsetBreakpointsActive, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.

Defines pause on exceptions state. Can be set to stop on all exceptions, uncaught exceptions or no exceptions. Initial pause on exceptions state is <code>none</code>.

@JSName("post")
def post_DebuggersetPauseOnExceptions(method: DebuggerDotsetPauseOnExceptions, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetPauseOnExceptions(method: DebuggerDotsetPauseOnExceptions, params: SetPauseOnExceptionsParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetPauseOnExceptions(method: DebuggerDotsetPauseOnExceptions, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Changes return value in top frame. Available only at return break position.

Changes return value in top frame. Available only at return break position.

@JSName("post")
def post_DebuggersetReturnValue(method: DebuggerDotsetReturnValue, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetReturnValue(method: DebuggerDotsetReturnValue, params: SetReturnValueParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetReturnValue(method: DebuggerDotsetReturnValue, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Edits JavaScript source live.

Edits JavaScript source live.

@JSName("post")
def post_DebuggersetScriptSource(method: DebuggerDotsetScriptSource, callback: Function2[Error | Null, SetScriptSourceReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetScriptSource(method: DebuggerDotsetScriptSource, params: SetScriptSourceParameterType, callback: Function2[Error | Null, SetScriptSourceReturnType, Unit]): Unit
@JSName("post")
def post_DebuggersetScriptSource(method: DebuggerDotsetScriptSource, params: Unit, callback: Function2[Error | Null, SetScriptSourceReturnType, Unit]): Unit
@JSName("post")

Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).

Makes page not interrupt on any pauses (breakpoint, exception, dom exception etc).

@JSName("post")
def post_DebuggersetSkipAllPauses(method: DebuggerDotsetSkipAllPauses, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetSkipAllPauses(method: DebuggerDotsetSkipAllPauses, params: SetSkipAllPausesParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetSkipAllPauses(method: DebuggerDotsetSkipAllPauses, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.

Changes value of variable in a callframe. Object-based scopes are not supported and must be mutated manually.

@JSName("post")
def post_DebuggersetVariableValue(method: DebuggerDotsetVariableValue, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggersetVariableValue(method: DebuggerDotsetVariableValue, params: SetVariableValueParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggersetVariableValue(method: DebuggerDotsetVariableValue, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Steps into the function call.

Steps into the function call.

@JSName("post")
def post_DebuggerstepInto(method: DebuggerDotstepInto, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_DebuggerstepInto(method: DebuggerDotstepInto, params: StepIntoParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_DebuggerstepInto(method: DebuggerDotstepInto, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Steps out of the function call.

Steps out of the function call.

@JSName("post")
def post_DebuggerstepOut(method: DebuggerDotstepOut, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Steps over the statement.

Steps over the statement.

@JSName("post")
def post_DebuggerstepOver(method: DebuggerDotstepOver, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).

Enables console to refer to the node with given id via $x (see Command Line API for more details $x functions).

@JSName("post")
def post_HeapProfileraddInspectedHeapObject(method: HeapProfilerDotaddInspectedHeapObject, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
def post_HeapProfileraddInspectedHeapObject(method: HeapProfilerDotaddInspectedHeapObject, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilercollectGarbage(method: HeapProfilerDotcollectGarbage, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilerdisable(method: HeapProfilerDotdisable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilerenable(method: HeapProfilerDotenable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilergetHeapObjectId(method: HeapProfilerDotgetHeapObjectId, callback: Function2[Error | Null, GetHeapObjectIdReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
def post_HeapProfilergetHeapObjectId(method: HeapProfilerDotgetHeapObjectId, params: Unit, callback: Function2[Error | Null, GetHeapObjectIdReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
@JSName("post")
@JSName("post")
def post_HeapProfilergetObjectByHeapObjectId(method: HeapProfilerDotgetObjectByHeapObjectId, params: Unit, callback: Function2[Error | Null, GetObjectByHeapObjectIdReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilergetSamplingProfile(method: HeapProfilerDotgetSamplingProfile, callback: Function2[Error | Null, GetSamplingProfileReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilerstartSampling(method: HeapProfilerDotstartSampling, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilerstartSampling(method: HeapProfilerDotstartSampling, params: StartSamplingParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_HeapProfilerstartSampling(method: HeapProfilerDotstartSampling, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilerstartTrackingHeapObjects(method: HeapProfilerDotstartTrackingHeapObjects, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
def post_HeapProfilerstartTrackingHeapObjects(method: HeapProfilerDotstartTrackingHeapObjects, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilerstopSampling(method: HeapProfilerDotstopSampling, callback: Function2[Error | Null, StopSamplingReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilerstopTrackingHeapObjects(method: HeapProfilerDotstopTrackingHeapObjects, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
def post_HeapProfilerstopTrackingHeapObjects(method: HeapProfilerDotstopTrackingHeapObjects, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilertakeHeapSnapshot(method: HeapProfilerDottakeHeapSnapshot, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_HeapProfilertakeHeapSnapshot(method: HeapProfilerDottakeHeapSnapshot, params: TakeHeapSnapshotParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_HeapProfilertakeHeapSnapshot(method: HeapProfilerDottakeHeapSnapshot, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_Profilerdisable(method: ProfilerDotdisable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_Profilerenable(method: ProfilerDotenable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection.

Collect coverage data for the current isolate. The coverage data may be incomplete due to garbage collection.

@JSName("post")
@JSName("post")

Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.

Changes CPU profiler sampling interval. Must be called before CPU profiles recording started.

@JSName("post")
def post_ProfilersetSamplingInterval(method: ProfilerDotsetSamplingInterval, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_ProfilersetSamplingInterval(method: ProfilerDotsetSamplingInterval, params: SetSamplingIntervalParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_ProfilersetSamplingInterval(method: ProfilerDotsetSamplingInterval, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_Profilerstart(method: ProfilerDotstart, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.

Enable precise code coverage. Coverage data for JavaScript executed before enabling precise code coverage may be incomplete. Enabling prevents running optimized code and resets execution counters.

@JSName("post")
def post_ProfilerstartPreciseCoverage(method: ProfilerDotstartPreciseCoverage, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_ProfilerstartPreciseCoverage(method: ProfilerDotstartPreciseCoverage, params: StartPreciseCoverageParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_ProfilerstartPreciseCoverage(method: ProfilerDotstartPreciseCoverage, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Enable type profile.

Enable type profile.

@JSName("post")
def post_ProfilerstartTypeProfile(method: ProfilerDotstartTypeProfile, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_Profilerstop(method: ProfilerDotstop, callback: Function2[Error | Null, StopReturnType, Unit]): Unit
@JSName("post")

Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.

Disable precise code coverage. Disabling releases unnecessary execution count records and allows executing optimized code.

@JSName("post")
def post_ProfilerstopPreciseCoverage(method: ProfilerDotstopPreciseCoverage, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Disable type profile. Disabling releases type profile data collected so far.

Disable type profile. Disabling releases type profile data collected so far.

@JSName("post")
def post_ProfilerstopTypeProfile(method: ProfilerDotstopTypeProfile, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started.

Collect coverage data for the current isolate, and resets execution counters. Precise code coverage needs to have started.

@JSName("post")
def post_ProfilertakePreciseCoverage(method: ProfilerDottakePreciseCoverage, callback: Function2[Error | Null, TakePreciseCoverageReturnType, Unit]): Unit
@JSName("post")

Collect type profile.

Collect type profile.

@JSName("post")
def post_ProfilertakeTypeProfile(method: ProfilerDottakeTypeProfile, callback: Function2[Error | Null, TakeTypeProfileReturnType, Unit]): Unit
@JSName("post")

Add handler to promise with given promise object id.

Add handler to promise with given promise object id.

@JSName("post")
def post_RuntimeawaitPromise(method: RuntimeDotawaitPromise, callback: Function2[Error | Null, AwaitPromiseReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimeawaitPromise(method: RuntimeDotawaitPromise, params: AwaitPromiseParameterType, callback: Function2[Error | Null, AwaitPromiseReturnType, Unit]): Unit
@JSName("post")
def post_RuntimeawaitPromise(method: RuntimeDotawaitPromise, params: Unit, callback: Function2[Error | Null, AwaitPromiseReturnType, Unit]): Unit
@JSName("post")

Calls function with given declaration on the given object. Object group of the result is inherited from the target object.

Calls function with given declaration on the given object. Object group of the result is inherited from the target object.

@JSName("post")
def post_RuntimecallFunctionOn(method: RuntimeDotcallFunctionOn, callback: Function2[Error | Null, CallFunctionOnReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimecallFunctionOn(method: RuntimeDotcallFunctionOn, params: CallFunctionOnParameterType, callback: Function2[Error | Null, CallFunctionOnReturnType, Unit]): Unit
@JSName("post")
def post_RuntimecallFunctionOn(method: RuntimeDotcallFunctionOn, params: Unit, callback: Function2[Error | Null, CallFunctionOnReturnType, Unit]): Unit
@JSName("post")

Compiles expression.

Compiles expression.

@JSName("post")
def post_RuntimecompileScript(method: RuntimeDotcompileScript, callback: Function2[Error | Null, CompileScriptReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimecompileScript(method: RuntimeDotcompileScript, params: CompileScriptParameterType, callback: Function2[Error | Null, CompileScriptReturnType, Unit]): Unit
@JSName("post")
def post_RuntimecompileScript(method: RuntimeDotcompileScript, params: Unit, callback: Function2[Error | Null, CompileScriptReturnType, Unit]): Unit
@JSName("post")

Disables reporting of execution contexts creation.

Disables reporting of execution contexts creation.

@JSName("post")
def post_Runtimedisable(method: RuntimeDotdisable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Discards collected exceptions and console API calls.

Discards collected exceptions and console API calls.

@JSName("post")
def post_RuntimediscardConsoleEntries(method: RuntimeDotdiscardConsoleEntries, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context.

Enables reporting of execution contexts creation by means of <code>executionContextCreated</code> event. When the reporting gets enabled the event will be sent immediately for each existing execution context.

@JSName("post")
def post_Runtimeenable(method: RuntimeDotenable, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Evaluates expression on global object.

Evaluates expression on global object.

@JSName("post")
def post_Runtimeevaluate(method: RuntimeDotevaluate, callback: Function2[Error | Null, EvaluateReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_Runtimeevaluate(method: RuntimeDotevaluate, params: EvaluateParameterType, callback: Function2[Error | Null, EvaluateReturnType, Unit]): Unit
@JSName("post")
def post_Runtimeevaluate(method: RuntimeDotevaluate, params: Unit, callback: Function2[Error | Null, EvaluateReturnType, Unit]): Unit
@JSName("post")

Returns properties of a given object. Object group of the result is inherited from the target object.

Returns properties of a given object. Object group of the result is inherited from the target object.

@JSName("post")
def post_RuntimegetProperties(method: RuntimeDotgetProperties, callback: Function2[Error | Null, GetPropertiesReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimegetProperties(method: RuntimeDotgetProperties, params: GetPropertiesParameterType, callback: Function2[Error | Null, GetPropertiesReturnType, Unit]): Unit
@JSName("post")
def post_RuntimegetProperties(method: RuntimeDotgetProperties, params: Unit, callback: Function2[Error | Null, GetPropertiesReturnType, Unit]): Unit
@JSName("post")

Returns all let, const and class variables from global scope.

Returns all let, const and class variables from global scope.

@JSName("post")
@JSName("post")
@JSName("post")
@JSName("post")
def post_RuntimeglobalLexicalScopeNames(method: RuntimeDotglobalLexicalScopeNames, params: Unit, callback: Function2[Error | Null, GlobalLexicalScopeNamesReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimequeryObjects(method: RuntimeDotqueryObjects, callback: Function2[Error | Null, QueryObjectsReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimequeryObjects(method: RuntimeDotqueryObjects, params: QueryObjectsParameterType, callback: Function2[Error | Null, QueryObjectsReturnType, Unit]): Unit
@JSName("post")
def post_RuntimequeryObjects(method: RuntimeDotqueryObjects, params: Unit, callback: Function2[Error | Null, QueryObjectsReturnType, Unit]): Unit
@JSName("post")

Releases remote object with given id.

Releases remote object with given id.

@JSName("post")
def post_RuntimereleaseObject(method: RuntimeDotreleaseObject, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimereleaseObject(method: RuntimeDotreleaseObject, params: ReleaseObjectParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_RuntimereleaseObject(method: RuntimeDotreleaseObject, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Releases all remote objects that belong to a given group.

Releases all remote objects that belong to a given group.

@JSName("post")
def post_RuntimereleaseObjectGroup(method: RuntimeDotreleaseObjectGroup, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimereleaseObjectGroup(method: RuntimeDotreleaseObjectGroup, params: ReleaseObjectGroupParameterType, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
def post_RuntimereleaseObjectGroup(method: RuntimeDotreleaseObjectGroup, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Tells inspected instance to run if it was waiting for debugger to attach.

Tells inspected instance to run if it was waiting for debugger to attach.

@JSName("post")
def post_RuntimerunIfWaitingForDebugger(method: RuntimeDotrunIfWaitingForDebugger, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Runs script with given id in a given context.

Runs script with given id in a given context.

@JSName("post")
def post_RuntimerunScript(method: RuntimeDotrunScript, callback: Function2[Error | Null, RunScriptReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimerunScript(method: RuntimeDotrunScript, params: RunScriptParameterType, callback: Function2[Error | Null, RunScriptReturnType, Unit]): Unit
@JSName("post")
def post_RuntimerunScript(method: RuntimeDotrunScript, params: Unit, callback: Function2[Error | Null, RunScriptReturnType, Unit]): Unit
@JSName("post")
@JSName("post")
def post_RuntimesetCustomObjectFormatterEnabled(method: RuntimeDotsetCustomObjectFormatterEnabled, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")
@JSName("post")
@JSName("post")
def post_RuntimesetCustomObjectFormatterEnabled(method: RuntimeDotsetCustomObjectFormatterEnabled, params: Unit, callback: Function1[Error | Null, Unit]): Unit
@JSName("post")

Returns supported domains.

Returns supported domains.

@JSName("post")
def post_SchemagetDomains(method: SchemaDotgetDomains, callback: Function2[Error | Null, GetDomainsReturnType, Unit]): Unit
def prependListener(event: String, listener: Function1[Any, Unit]): Session
@JSName("prependListener")

Issued when new console message is added.

Issued when new console message is added.

@JSName("prependListener")

Fired when breakpoint is resolved to an actual script and location.

Fired when breakpoint is resolved to an actual script and location.

@JSName("prependListener")

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

@JSName("prependListener")
def prependListener_Debuggerresumed(event: DebuggerDotresumed, listener: Function0[Unit]): Session

Fired when the virtual machine resumed execution.

Fired when the virtual machine resumed execution.

@JSName("prependListener")

Fired when virtual machine fails to parse the script.

Fired when virtual machine fails to parse the script.

@JSName("prependListener")

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

@JSName("prependListener")

If heap objects tracking has been started then backend may send update for one or more fragments

If heap objects tracking has been started then backend may send update for one or more fragments

@JSName("prependListener")

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

@JSName("prependListener")
@JSName("prependListener")

Sent when new profile recording is started using console.profile() call.

Sent when new profile recording is started using console.profile() call.

@JSName("prependListener")

Issued when console API was called.

Issued when console API was called.

@JSName("prependListener")

Issued when unhandled exception was revoked.

Issued when unhandled exception was revoked.

@JSName("prependListener")

Issued when exception was thrown and unhandled.

Issued when exception was thrown and unhandled.

@JSName("prependListener")

Issued when new execution context is created.

Issued when new execution context is created.

@JSName("prependListener")

Issued when execution context is destroyed.

Issued when execution context is destroyed.

@JSName("prependListener")

Issued when all executionContexts were cleared in browser

Issued when all executionContexts were cleared in browser

@JSName("prependListener")

Issued when object should be inspected (for example, as a result of inspect() command line API call).

Issued when object should be inspected (for example, as a result of inspect() command line API call).

@JSName("prependListener")

Emitted when any notification from the V8 Inspector is received.

Emitted when any notification from the V8 Inspector is received.

def prependOnceListener(event: String, listener: Function1[Any, Unit]): Session
@JSName("prependOnceListener")

Issued when new console message is added.

Issued when new console message is added.

@JSName("prependOnceListener")

Fired when breakpoint is resolved to an actual script and location.

Fired when breakpoint is resolved to an actual script and location.

@JSName("prependOnceListener")

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.

@JSName("prependOnceListener")
def prependOnceListener_Debuggerresumed(event: DebuggerDotresumed, listener: Function0[Unit]): Session

Fired when the virtual machine resumed execution.

Fired when the virtual machine resumed execution.

@JSName("prependOnceListener")

Fired when virtual machine fails to parse the script.

Fired when virtual machine fails to parse the script.

@JSName("prependOnceListener")

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger.

@JSName("prependOnceListener")

If heap objects tracking has been started then backend may send update for one or more fragments

If heap objects tracking has been started then backend may send update for one or more fragments

@JSName("prependOnceListener")

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

If heap objects tracking has been started then backend regularly sends a current value for last seen object id and corresponding timestamp. If the were changes in the heap since last event then one or more heapStatsUpdate events will be sent before a new lastSeenObjectId event.

@JSName("prependOnceListener")
@JSName("prependOnceListener")

Sent when new profile recording is started using console.profile() call.

Sent when new profile recording is started using console.profile() call.

@JSName("prependOnceListener")

Issued when console API was called.

Issued when console API was called.

@JSName("prependOnceListener")

Issued when unhandled exception was revoked.

Issued when unhandled exception was revoked.

@JSName("prependOnceListener")

Issued when exception was thrown and unhandled.

Issued when exception was thrown and unhandled.

@JSName("prependOnceListener")

Issued when new execution context is created.

Issued when new execution context is created.

@JSName("prependOnceListener")

Issued when execution context is destroyed.

Issued when execution context is destroyed.

@JSName("prependOnceListener")

Issued when all executionContexts were cleared in browser

Issued when all executionContexts were cleared in browser

@JSName("prependOnceListener")

Issued when object should be inspected (for example, as a result of inspect() command line API call).

Issued when object should be inspected (for example, as a result of inspect() command line API call).

@JSName("prependOnceListener")

Emitted when any notification from the V8 Inspector is received.

Emitted when any notification from the V8 Inspector is received.

Inherited methods

def hasOwnProperty(v: String): Boolean
Inherited from
Object
def isPrototypeOf(v: Object): Boolean
Inherited from
Object
def propertyIsEnumerable(v: String): Boolean
Inherited from
Object
def toLocaleString(): String
Inherited from
Object
def valueOf(): Any
Inherited from
Object