|
Last change
on this file since 280 was 2, checked in by Dmitry A. Kuminov, 17 years ago |
|
Initially imported qt-all-opensource-src-4.5.1 from Trolltech.
|
|
File size:
478 bytes
|
| Line | |
|---|
| 1 | name = "continue";
|
|---|
| 2 |
|
|---|
| 3 | group = "running";
|
|---|
| 4 |
|
|---|
| 5 | shortDescription = "Continue evaluation";
|
|---|
| 6 |
|
|---|
| 7 | longDescription = "Evaluation will continue until an uncaught exception occurs, "
|
|---|
| 8 | longDescription += "a breakpoint is hit or evaluation is explicitly interrupted.";
|
|---|
| 9 |
|
|---|
| 10 | aliases = [ "c", "fg" ];
|
|---|
| 11 |
|
|---|
| 12 | seeAlso = [ "step", "interrupt" ];
|
|---|
| 13 |
|
|---|
| 14 | function execute() {
|
|---|
| 15 | scheduleContinue();
|
|---|
| 16 | };
|
|---|
| 17 |
|
|---|
| 18 | function 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.