0
|
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 |
}
|