forked from qt-creator/qt-creator
Debugger: Remove traces of outdated attempt at combined stepping
Has not been usable for a while and will be superseded by "native" mixed stepping. Change-Id: I2902a98b7ad4e4b29e389e54fb6488bf711840dd Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -1924,20 +1924,4 @@ registerCommand("stackListFrames", stackListFrames)
|
||||
#
|
||||
#######################################################################
|
||||
|
||||
def qmlb(args):
|
||||
# executeCommand(command, to_string=True).split("\n")
|
||||
warn("RUNNING: break -f QScript::FunctionWrapper::proxyCall")
|
||||
output = gdb.execute("rbreak -f QScript::FunctionWrapper::proxyCall", to_string=True).split("\n")
|
||||
warn("OUTPUT: %s " % output)
|
||||
bp = output[0]
|
||||
warn("BP: %s " % bp)
|
||||
# BP: ['Breakpoint 3 at 0xf166e7: file .../qscriptfunction.cpp, line 75.\\n'] \n"
|
||||
pos = bp.find(' ') + 1
|
||||
warn("POS: %s " % pos)
|
||||
nr = bp[bp.find(' ') + 1 : bp.find(' at ')]
|
||||
warn("NR: %s " % nr)
|
||||
return bp
|
||||
|
||||
registerCommand("qmlb", qmlb)
|
||||
|
||||
bbsetup()
|
||||
|
||||
Reference in New Issue
Block a user