source: trunk/src/scripttools/debugging/scripts/commands/continue.qs@ 5

Last change on this file since 5 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 478 bytes
Line 
1name = "continue";
2
3group = "running";
4
5shortDescription = "Continue evaluation";
6
7longDescription = "Evaluation will continue until an uncaught exception occurs, "
8longDescription += "a breakpoint is hit or evaluation is explicitly interrupted.";
9
10aliases = [ "c", "fg" ];
11
12seeAlso = [ "step", "interrupt" ];
13
14function execute() {
15 scheduleContinue();
16};
17
18function handleResponse(resp) {
19 if (!resp.async) {
20 message("The target is not evaluating code.");
21 }
22}
Note: See TracBrowser for help on using the repository browser.