source: trunk/src/scripttools/debugging/scripts/commands/eval.qs@ 5

Last change on this file since 5 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 416 bytes
Line 
1name = "eval";
2
3group = "running";
4
5shortDescription = "Evaluate program";
6
7longDescription = "";
8
9argumentTypes = [ "script" ];
10
11function execute() {
12 if (arguments.length == 0) {
13 message("Missing argument (program).");
14 return;
15 }
16 setEvaluateAction(0);
17 scheduleEvaluate(getCurrentFrameIndex(), arguments[0], "console input (" + Date() + ")");
18};
19
20function handleResponse(resp, id) {
21}
Note: See TracBrowser for help on using the repository browser.