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/nodes2string.cpp

    r31149 r34351  
    821821}
    822822
     823void DebuggerStatementNode::streamTo(SourceStream& s) const
     824{
     825    s << Endl << "debugger;";
     826}
     827
    823828void ExprStatementNode::streamTo(SourceStream& s) const
    824829{
Note: See TracChangeset for help on using the changeset viewer.