summaryrefslogtreecommitdiffstats
path: root/src/scripttools/debugging/scripts/commands/interrupt.qs
blob: d4b66ccd997ac1e12a4a048d4aa3435037142b51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name = "interrupt";

group = "running";

shortDescription = "Interrupt evaluation";

longDescription = "Interruption will occur as soon as a new script statement is reached.";

function execute() {
    scheduleInterrupt();
}

function handleResponse(resp) {
}