Changeset 190542 in webkit for trunk/Source/JavaScriptCore/debugger/Breakpoint.h
- Timestamp:
- Oct 2, 2015, 8:18:19 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/debugger/Breakpoint.h
r184291 r190542 36 36 struct Breakpoint : public DoublyLinkedListNode<Breakpoint> { 37 37 Breakpoint() 38 : id(noBreakpointID)39 , sourceID(noSourceID)40 , line(0)41 , column(0)42 , autoContinue(false)43 38 { 44 39 } 45 40 46 Breakpoint(SourceID sourceID, unsigned line, unsigned column, const String& condition, bool autoContinue) 47 : id(noBreakpointID) 48 , sourceID(sourceID) 41 Breakpoint(SourceID sourceID, unsigned line, unsigned column, const String& condition, bool autoContinue, unsigned ignoreCount) 42 : sourceID(sourceID) 49 43 , line(line) 50 44 , column(column) 51 45 , condition(condition) 52 46 , autoContinue(autoContinue) 47 , ignoreCount(ignoreCount) 53 48 { 54 49 } … … 61 56 , condition(other.condition) 62 57 , autoContinue(other.autoContinue) 58 , ignoreCount(other.ignoreCount) 59 , hitCount(other.hitCount) 63 60 { 64 61 } 65 62 66 BreakpointID id ;67 SourceID sourceID ;68 unsigned line ;69 unsigned column ;63 BreakpointID id { noBreakpointID }; 64 SourceID sourceID { noSourceID }; 65 unsigned line { 0 }; 66 unsigned column { 0 }; 70 67 String condition; 71 bool autoContinue; 68 bool autoContinue { false }; 69 unsigned ignoreCount { 0 }; 70 unsigned hitCount { 0 }; 72 71 73 72 static const unsigned unspecifiedColumn = UINT_MAX;
Note:
See TracChangeset
for help on using the changeset viewer.