forked from qt-creator/qt-creator
Debugger: Clean pending lookup requests when preparing a step
This avoids accumulating lookup requests when stepping quickly. They won't produce usable output anymore. Change-Id: I9e29ca1778019e3eab37d122386d3faf0e07edbf Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
@@ -768,6 +768,12 @@ void QmlEngine::insertBreakpoint(Breakpoint bp)
|
||||
d->breakpointsSync.insert(d->sequence, bp.id());
|
||||
}
|
||||
|
||||
void QmlEngine::resetLocation()
|
||||
{
|
||||
DebuggerEngine::resetLocation();
|
||||
d->currentlyLookingUp.clear();
|
||||
}
|
||||
|
||||
void QmlEngine::removeBreakpoint(Breakpoint bp)
|
||||
{
|
||||
const BreakpointParameters ¶ms = bp.parameters();
|
||||
|
||||
Reference in New Issue
Block a user