Changeset 207267 in webkit for trunk/Source/JavaScriptCore/debugger/Debugger.h
- Timestamp:
- Oct 12, 2016, 7:05:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/Debugger.h
r206653 r207267 111 111 void stepOutOfFunction(); 112 112 113 bool isBlacklisted(SourceID) const; 114 void addToBlacklist(SourceID); 115 void clearBlacklist(); 116 113 117 bool isPaused() const { return m_isPaused; } 114 118 bool isStepping() const { return m_steppingMode == SteppingModeEnabled; } … … 217 221 VM& m_vm; 218 222 HashSet<JSGlobalObject*> m_globalObjects; 219 HashMap<SourceID, DebuggerParseData> m_parseDataMap; 223 HashMap<SourceID, DebuggerParseData, WTF::IntHash<SourceID>, WTF::UnsignedWithZeroKeyHashTraits<SourceID>> m_parseDataMap; 224 HashSet<SourceID, WTF::IntHash<SourceID>, WTF::UnsignedWithZeroKeyHashTraits<SourceID>> m_blacklistedScripts; 220 225 221 226 PauseOnExceptionsState m_pauseOnExceptionsState;
Note:
See TracChangeset
for help on using the changeset viewer.