source:
branches/4.5.1/src/scripttools/debugging/scripts/commands/continue.qs@
559
Last change on this file since 559 was 2, checked in by , 16 years ago | |
---|---|
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