Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Side by Side Diff: tests/debugger/internal_scope_expected.txt

Issue 2122743004: Use the actual frame for printing single values from the cli debugger. (Closed) Base URL: git@github.com:dartino/sdk.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/dartino_compiler/lib/cli_debugger.dart ('k') | tests/debugger/internal_scope_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Starting session. Type 'help' for a list of commands. 1 Starting session. Type 'help' for a list of commands.
2 2
3 > b main 3 > b main
4 ### set breakpoint id: '0' method: 'main' bytecode index: '0' 4 ### set breakpoint id: '0' method: 'main' bytecode index: '0'
5 > r 5 > r
6 tests/debugger/internal_scope_test.dart:20:13 6 tests/debugger/internal_scope_test.dart:20:13
7 20 var rnd = new Random(); 7 20 var rnd = new Random();
8 > n 8 > n
9 tests/debugger/internal_scope_test.dart:21:3 9 tests/debugger/internal_scope_test.dart:21:3
10 21 rnd.nextInt(255); 10 21 rnd.nextInt(255);
(...skipping 15 matching lines...) Expand all
26 3: entry @callMain(new _Arguments()) 26 3: entry @callMain(new _Arguments())
27 > p 27 > p
28 max: 255 28 max: 255
29 this: Instance of '_Random' 29 this: Instance of '_Random'
30 > toggle internal 30 > toggle internal
31 ### internal frame visibility set to: false 31 ### internal frame visibility set to: false
32 > bt 32 > bt
33 * 0: main @rnd.nextInt(255) 33 * 0: main @rnd.nextInt(255)
34 > p 34 > p
35 rnd: Instance of '_Random' 35 rnd: Instance of '_Random'
36 > p rnd
37 Instance of '_Random'
36 > q 38 > q
OLDNEW
« no previous file with comments | « pkg/dartino_compiler/lib/cli_debugger.dart ('k') | tests/debugger/internal_scope_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698