blob: bf19fc00a1f199fe4deae1c86377e57323b2c17c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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) {
}
|