diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-08-02 20:08:35 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-08-02 20:38:12 -0700 |
commit | 37900254f083364dcfbb80cf7119c230a0b603d6 (patch) | |
tree | 2a720b8dfda5655134664057408e4fa0582ee66a | |
parent | 7f402c85eb34a739055dc3e5bb4be337169ec68c (diff) | |
download | mu-37900254f083364dcfbb80cf7119c230a0b603d6.tar.gz |
1922
-rw-r--r-- | 029tools.cc | 2 | ||||
-rw-r--r-- | edit.mu | 53 |
2 files changed, 52 insertions, 3 deletions
diff --git a/029tools.cc b/029tools.cc index 587818ea..de4b488c 100644 --- a/029tools.cc +++ b/029tools.cc @@ -22,7 +22,7 @@ case TRACE: { else if (SIZE(ingredients) == 1) { assert(is_literal(current_instruction().ingredients.at(0))); string message = current_instruction().ingredients.at(0).name; - cerr << "tracing " << message << '\n'; +//? cerr << "tracing " << message << '\n'; //? 1 trace(1, "app") << message << end(); } else { diff --git a/edit.mu b/edit.mu index 82f81c5d..381e47e1 100644 --- a/edit.mu +++ b/edit.mu @@ -2918,6 +2918,7 @@ recipe render-sandboxes [ { break-if sandbox-warnings break-unless empty-screen? +#? $print [display response from ], row, 10/newline #? 1 *response-starting-row <- add row, 1 +render-sandbox-response row, screen <- render-string screen, sandbox-response, left, right, 245/grey, row @@ -3699,6 +3700,53 @@ recipe foo [ ] ] +scenario sandbox-shows-app-trace-and-result [ + $close-trace + assume-screen 40/width, 10/height + # basic recipe + 1:address:array:character <- new [ +recipe foo [ + trace [abc] + add 2, 2 +]] + # run it + 2:address:array:character <- new [foo] + assume-console [ + press 65532 # F4 + ] + 3:address:programming-environment-data <- new-programming-environment screen:address, 1:address:array:character, 2:address:array:character + event-loop screen:address, console:address, 3:address:programming-environment-data + screen-should-contain [ + . run (F4) . + . ┊ . + .recipe foo [ ┊━━━━━━━━━━━━━━━━━━━. + . trace [abc] ┊ x. + . add 2, 2 ┊foo . + .] ┊4 . + .┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊━━━━━━━━━━━━━━━━━━━. + . ┊ . + ] + # click on the 'foo' line in the sandbox + assume-console [ + left-click 4, 21 + ] + run [ + event-loop screen:address, console:address, 3:address:programming-environment-data + ] + # trace now printed + screen-should-contain [ + . run (F4) . + . ┊ . + .recipe foo [ ┊━━━━━━━━━━━━━━━━━━━. + . trace [abc] ┊ x. + . add 2, 2 ┊foo . + .] ┊abc . + .┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┊4 . + . ┊━━━━━━━━━━━━━━━━━━━. + . ┊ . + ] +] + # clicks on sandbox code toggle its display-trace? flag after +global-touch [ # right side of screen? check if it's inside the code of any sandbox @@ -3758,15 +3806,16 @@ recipe find-click-in-sandbox-code [ reply sandbox ] -# when rendering a sandbox, dump its trace if display-trace? property is set +# when rendering a sandbox, dump its trace before response/warning if display-trace? property is set after +render-sandbox-results [ { display-trace?:boolean <- get *sandbox, display-trace?:offset break-unless display-trace? sandbox-trace:address:array:character <- get *sandbox, trace:offset break-unless sandbox-trace # nothing to print; move on +#? $print [display trace from ], row, 10/newline #? 1 row, screen <- render-string, screen, sandbox-trace, left, right, 245/grey, row - jump +render-sandbox-end:label + row <- subtract row, 1 # trim the trailing newline that's always present } ] |