diff options
Diffstat (limited to 'src/scripttools/debugging/scripts/commands/finish.qs')
-rw-r--r-- | src/scripttools/debugging/scripts/commands/finish.qs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/scripttools/debugging/scripts/commands/finish.qs b/src/scripttools/debugging/scripts/commands/finish.qs new file mode 100644 index 0000000..bf19fc0 --- /dev/null +++ b/src/scripttools/debugging/scripts/commands/finish.qs @@ -0,0 +1,16 @@ +name = "finish"; + +group = "running"; + +shortDescription = "Execute until the current stack frame returns"; + +longDescription = "Upon return, the value returned is printed."; + +seeAlso = [ "next", "continue" ]; + +function execute() { + scheduleStepOut(); +}; + +function handleResponse(resp) { +} |