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

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

Issue 119673004: Version 1.1.0-dev.5.2 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: dart/tests/standalone/debugger/debug_lib.dart
===================================================================
--- dart/tests/standalone/debugger/debug_lib.dart (revision 31530)
+++ dart/tests/standalone/debugger/debug_lib.dart (working copy)
@@ -471,7 +471,7 @@
}
// Send next debugger command in the script, if a response
- // form the last command has been received and processed.
+ // from the last command has been received and processed.
void sendNextCommand() {
while (script.isNextEventMatcher) {
EventMatcher matcher = script.currentEntry;
@@ -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(" ")}');
« no previous file with comments | « dart/tests/standalone/debugger/breakpoint_resolved_test.dart ('k') | dart/tests/standalone/debugger/local_function_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698