author | William Roberts <williamr@symbian.org> |
Fri, 11 Jun 2010 16:26:16 +0100 | |
branch | GCC_SURGE |
changeset 24 | 24fd0381a9ae |
parent 0 | 1918ee327afb |
permissions | -rw-r--r-- |
// ### exactly the same as eval, but provided for convenience name = "print"; group = "status"; shortDescription = "Print value of an expression"; longDescription = ""; argumentTypes = [ "script" ]; function execute() { if (arguments.length == 0) { message("Missing argument (expression)."); return; } setEvaluateAction(0); scheduleEvaluate(getCurrentFrameIndex(), arguments[0], "console input (" + Date() + ")"); }; function handleResponse(resp, id) { }