Ignore:
Timestamp:
Sep 23, 2014, 2:24:01 PM (11 years ago)
Author:
[email protected]
Message:

Renamed DebuggerCallFrameScope to DebuggerPausedScope.
<https://webkit.org/b/137042>

Reviewed by Michael Saboff.

DebuggerPausedScope is a better name for this data structure because it
is meant for tracking the period within which the debugger is paused,
and doing clean ups after the pause ends.

  • debugger/Debugger.cpp:

(JSC::DebuggerPausedScope::DebuggerPausedScope):
(JSC::DebuggerPausedScope::~DebuggerPausedScope):
(JSC::Debugger::pauseIfNeeded):
(JSC::DebuggerCallFrameScope::DebuggerCallFrameScope): Deleted.
(JSC::DebuggerCallFrameScope::~DebuggerCallFrameScope): Deleted.

  • debugger/Debugger.h:
  • debugger/DebuggerCallFrame.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/debugger/DebuggerCallFrame.h

    r173100 r173892  
    8383    RefPtr<DebuggerCallFrame> m_caller;
    8484    TextPosition m_position;
    85     // The DebuggerCallFrameScope is responsible for calling invalidate() which,
     85    // The DebuggerPausedScope is responsible for calling invalidate() which,
    8686    // in turn, will clear this strong ref.
    8787    Strong<DebuggerScope> m_scope;
Note: See TracChangeset for help on using the changeset viewer.