src/scripttools/debugging/scripts/commands/finish.qs
author Alex Gilkes <alex.gilkes@nokia.com>
Mon, 11 Jan 2010 14:00:40 +0000
changeset 0 1918ee327afb
permissions -rw-r--r--
Revision: 200952

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) {
}