author | Eckhart Koeppen <eckhart.koppen@nokia.com> |
Thu, 08 Apr 2010 14:19:33 +0300 | |
branch | RCL_3 |
changeset 7 | 3f74d0d4af4c |
parent 0 | 1918ee327afb |
permissions | -rw-r--r-- |
name = "continue"; group = "running"; shortDescription = "Continue evaluation"; longDescription = "Evaluation will continue until an uncaught exception occurs, " longDescription += "a breakpoint is hit or evaluation is explicitly interrupted."; aliases = [ "c", "fg" ]; seeAlso = [ "step", "interrupt" ]; function execute() { scheduleContinue(); }; function handleResponse(resp) { if (!resp.async) { message("The target is not evaluating code."); } }