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