forked from qt-creator/qt-creator
Merge remote-tracking branch 'origin/4.8'
Conflicts: src/plugins/debugger/debuggeritem.cpp tests/unit/unittest/unittest.pro Change-Id: Id2e4e9c2bc87b2556d7c2845aea3fe2fa11b630b
This commit is contained in:
@@ -610,15 +610,7 @@ void QmlEngine::interruptInferior()
|
||||
showStatusMessage(tr("Waiting for JavaScript engine to interrupt on next statement."));
|
||||
}
|
||||
|
||||
void QmlEngine::executeStep()
|
||||
{
|
||||
clearExceptionSelection();
|
||||
d->continueDebugging(StepIn);
|
||||
notifyInferiorRunRequested();
|
||||
notifyInferiorRunOk();
|
||||
}
|
||||
|
||||
void QmlEngine::executeStepI()
|
||||
void QmlEngine::executeStepIn(bool)
|
||||
{
|
||||
clearExceptionSelection();
|
||||
d->continueDebugging(StepIn);
|
||||
@@ -634,7 +626,7 @@ void QmlEngine::executeStepOut()
|
||||
notifyInferiorRunOk();
|
||||
}
|
||||
|
||||
void QmlEngine::executeNext()
|
||||
void QmlEngine::executeStepOver(bool)
|
||||
{
|
||||
clearExceptionSelection();
|
||||
d->continueDebugging(Next);
|
||||
@@ -642,11 +634,6 @@ void QmlEngine::executeNext()
|
||||
notifyInferiorRunOk();
|
||||
}
|
||||
|
||||
void QmlEngine::executeNextI()
|
||||
{
|
||||
executeNext();
|
||||
}
|
||||
|
||||
void QmlEngine::executeRunToLine(const ContextData &data)
|
||||
{
|
||||
QTC_ASSERT(state() == InferiorStopOk, qDebug() << state());
|
||||
|
||||
Reference in New Issue
Block a user