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

Side by Side Diff: tests/debugger/internal_scope_test.dart

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 | « tests/debugger/internal_scope_expected.txt ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2016, the Dartino project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dartino project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE.md file. 3 // BSD-style license that can be found in the LICENSE.md file.
4 4
5 // DartinoDebuggerCommands=b main,r,n 5 // DartinoDebuggerCommands=b main,r,n
6 // Enable view of internal frames. 6 // Enable view of internal frames.
7 // DartinoDebuggerCommands=toggle internal 7 // DartinoDebuggerCommands=toggle internal
8 // Step into an internal function (Random.nextInt) 8 // Step into an internal function (Random.nextInt)
9 // DartinoDebuggerCommands=s,s,s 9 // DartinoDebuggerCommands=s,s,s
10 // DartinoDebuggerCommands=bt,p 10 // DartinoDebuggerCommands=bt,p
11 // Disable view of internal frames. 11 // Disable view of internal frames.
12 // DartinoDebuggerCommands=toggle internal 12 // DartinoDebuggerCommands=toggle internal
13 // Now we should get the stack view of the top current non-internal frame(main). 13 // Now we should get the stack view of the top current non-internal frame(main).
14 // DartinoDebuggerCommands=bt,p 14 // DartinoDebuggerCommands=bt,p,p rnd
15 // DartinoDebuggerCommands=q 15 // DartinoDebuggerCommands=q
16 16
17 import 'dart:math'; 17 import 'dart:math';
18 18
19 main() { 19 main() {
20 var rnd = new Random(); 20 var rnd = new Random();
21 rnd.nextInt(255); 21 rnd.nextInt(255);
22 } 22 }
OLDNEW
« no previous file with comments | « tests/debugger/internal_scope_expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698