diff options
author | hjk <hjk@qt.io> | 2018-10-02 12:53:07 +0200 |
---|---|---|
committer | hjk <hjk@qt.io> | 2018-10-16 10:34:31 +0000 |
commit | fa96f731923facc1b051eef66baa8398dadb109b (patch) | |
tree | b11ef9a89befe8e6f2c8609585452433c7ca392c /src/plugins/debugger/qml/qmlengine.h | |
parent | 78fbb0826b1cc229f51406614b295cdf3073f88c (diff) | |
download | qt-creator-fa96f731923facc1b051eef66baa8398dadb109b.tar.gz |
Debugger: Rework step{In,Out,Over} handling
Main menu action pass operation to current engine, everything else
is handled there.
Combine execute{Step,Next} and execute{Step,Next}I functions.
Implementation were mostly similar, in some cases unneeded
(the instruction-wise version e.g. for Python)
Drop GDB-isms 'step', 'next' in favor of 'step in' and 'step over'.
Change-Id: I232232bc7a67d9d297a74f1c81dc43be96787d34
Reviewed-by: David Schulz <david.schulz@qt.io>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/debugger/qml/qmlengine.h')
-rw-r--r-- | src/plugins/debugger/qml/qmlengine.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/debugger/qml/qmlengine.h b/src/plugins/debugger/qml/qmlengine.h index 8d407b11ae..df31c3c6c5 100644 --- a/src/plugins/debugger/qml/qmlengine.h +++ b/src/plugins/debugger/qml/qmlengine.h @@ -72,11 +72,9 @@ private: void resetLocation() override; - void executeStep() override; + void executeStepOver(bool) override; + void executeStepIn(bool) override; void executeStepOut() override; - void executeNext() override; - void executeStepI() override; - void executeNextI() override; void setupEngine() override; void runEngine() override; |