summaryrefslogtreecommitdiffstats
path: root/src/scripttools/debugging/scripts/commands/interrupt.qs
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripttools/debugging/scripts/commands/interrupt.qs')
-rw-r--r--src/scripttools/debugging/scripts/commands/interrupt.qs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/scripttools/debugging/scripts/commands/interrupt.qs b/src/scripttools/debugging/scripts/commands/interrupt.qs
new file mode 100644
index 0000000..d4b66cc
--- /dev/null
+++ b/src/scripttools/debugging/scripts/commands/interrupt.qs
@@ -0,0 +1,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) {
+}