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

Unified Diff: tests/standalone/debugger/debug_lib.dart

Issue 117133005: Change how debugger handles source breakpoints (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years 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 side-by-side diff with in-line comments
Download patch
« runtime/vm/debugger.cc ('K') | « runtime/vm/service_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/debugger/debug_lib.dart
===================================================================
--- tests/standalone/debugger/debug_lib.dart (revision 31244)
+++ tests/standalone/debugger/debug_lib.dart (working copy)
@@ -610,6 +610,9 @@
// Port number 0 means debug target picks a free port dynamically.
var targetOpts = [ "--debug:0" ];
+ if (arguments.contains("--verbose")) {
+ targetOpts.add("--verbose_debug");
+ }
targetOpts.add(Platform.script.toFilePath());
targetOpts.add("--debuggee");
print('args: ${targetOpts.join(" ")}');
« runtime/vm/debugger.cc ('K') | « runtime/vm/service_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698