src/scripttools/debugging/scripts/commands/step.qs
author Eckhart Koeppen <eckhart.koppen@nokia.com>
Wed, 21 Apr 2010 12:15:23 +0300
branchRCL_3
changeset 13 cc75c76972ee
parent 0 1918ee327afb
permissions -rw-r--r--
a69086a7359b3de9db0823ce58d9aab8b5c369be

name = "step";

group = "running";

shortDescription = "Step program until a new statement is reached";

longDescription = "If a number N is given as argument, this will be done N times before execution is stopped.";

aliases = [ "s" ];

seeAlso = [ "next" ];

function execute() {
    var count = 1;
    if (arguments.length != 0) {
        var arg = arguments[0];
        // ### evaluate the expression in the current frame?
        var num = parseInt(arg);
        if (!isNaN(num) && (num >= 1))
            count = num;
    }
    scheduleStepInto(count);
};

function handleResponse(resp) {
}