Changeset 34351 in webkit for trunk/JavaScriptCore/kjs/debugger.h


Ignore:
Timestamp:
Jun 3, 2008, 3:48:52 PM (17 years ago)
Author:
[email protected]
Message:

Bug 12983: Web Inspector break on the debugger keyword
<https://bugs.webkit.org/show_bug.cgi?id=12983>

Reviewed by Tim

Added a DebuggerStatementNode to handle codegen, and added a new
DidReachBreakPoint debug event (which will hopefully be useful
if we ever move breakpoint management into JSC proper). Also
added didReachBreakpoint to Debugger to allow us to actually respond
to this event.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/debugger.h

    r34182 r34351  
    167167    virtual void willExecuteProgram(const DebuggerCallFrame&, int sourceId, int lineno) = 0;
    168168    virtual void didExecuteProgram(const DebuggerCallFrame&, int sourceId, int lineno) = 0;
     169    virtual void didReachBreakpoint(const DebuggerCallFrame&, int sourceId, int lineno) = 0;
    169170
    170171  private:
Note: See TracChangeset for help on using the changeset viewer.