forked from qt-creator/qt-creator
Debugger: Cleanup lldbbridge.py
Move reusable Breakpoint enum to base, use 'theDumper' uniformly across backends as name for the Dumper singleton. Signal engine setup only if the Dumper successfully initializes. Change-Id: If1b6be9d054f249d0d46061e4949cbecf4fd09cb Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -81,6 +81,22 @@ SeparateLatin1StringFormat, \
|
||||
SeparateUtf8StringFormat \
|
||||
= range(100, 112)
|
||||
|
||||
# Breakpoints. Keep synchronized with BreakpointType in breakpoint.h
|
||||
UnknownType, \
|
||||
BreakpointByFileAndLine, \
|
||||
BreakpointByFunction, \
|
||||
BreakpointByAddress, \
|
||||
BreakpointAtThrow, \
|
||||
BreakpointAtCatch, \
|
||||
BreakpointAtMain, \
|
||||
BreakpointAtFork, \
|
||||
BreakpointAtExec, \
|
||||
BreakpointAtSysCall, \
|
||||
WatchpointAtAddress, \
|
||||
WatchpointAtExpression, \
|
||||
BreakpointOnQmlSignalEmit, \
|
||||
BreakpointAtJavaScriptThrow, \
|
||||
= range(0, 14)
|
||||
#
|
||||
# matplot based display for array-like structures.
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user