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

Unified Diff: runtime/vm/debugger.cc

Issue 23072026: fix cpp11 compile errors (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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
« no previous file with comments | « runtime/vm/dart_api_state.h ('k') | runtime/vm/debugger_api_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger.cc
===================================================================
--- runtime/vm/debugger.cc (revision 26375)
+++ runtime/vm/debugger.cc (working copy)
@@ -963,7 +963,7 @@
script.GetTokenLocation(activation->TokenPos(), &line, &col);
OS::Print("CollectStackTrace error: no saved context in function "
"'%s' which calls closure '%s' "
- " in line %"Pd" column %"Pd"\n",
+ " in line %" Pd " column %" Pd "\n",
caller.ToFullyQualifiedCString(),
callee.ToFullyQualifiedCString(),
line, col);
@@ -1191,7 +1191,7 @@
// already exists.
if (FLAG_verbose_debug) {
OS::Print("Pending breakpoint for uncompiled function"
- " '%s' at line %"Pd" already exists\n",
+ " '%s' at line %" Pd " already exists\n",
target_function.ToFullyQualifiedCString(),
source_bpt->LineNumber());
}
@@ -1202,7 +1202,7 @@
RegisterSourceBreakpoint(source_bpt);
if (FLAG_verbose_debug) {
OS::Print("Registering pending breakpoint for "
- "uncompiled function '%s' at line %"Pd"\n",
+ "uncompiled function '%s' at line %" Pd "\n",
target_function.ToFullyQualifiedCString(),
source_bpt->LineNumber());
}
@@ -1286,7 +1286,7 @@
if (first_token_idx < 0) {
// Script does not contain the given line number.
if (FLAG_verbose_debug) {
- OS::Print("Script '%s' does not contain line number %"Pd"\n",
+ OS::Print("Script '%s' does not contain line number %" Pd "\n",
script_url.ToCString(), line_number);
}
return NULL;
@@ -1307,7 +1307,7 @@
}
if (func.IsNull()) {
if (FLAG_verbose_debug) {
- OS::Print("No executable code at line %"Pd" in '%s'\n",
+ OS::Print("No executable code at line %" Pd " in '%s'\n",
line_number, script_url.ToCString());
}
return NULL;
@@ -1588,7 +1588,7 @@
}
if (FLAG_verbose_debug) {
- OS::Print(">>> single step break at %s:%"Pd" (func %s token %"Pd")\n",
+ OS::Print(">>> single step break at %s:%" Pd " (func %s token %" Pd ")\n",
String::Handle(frame->SourceUrl()).ToCString(),
frame->LineNumber(),
String::Handle(frame->QualifiedFunctionName()).ToCString(),
@@ -1630,8 +1630,8 @@
report_bp = false;
}
if (FLAG_verbose_debug) {
- OS::Print(">>> %s %s breakpoint at %s:%"Pd" "
- "(token %"Pd") (address %#"Px")\n",
+ OS::Print(">>> %s %s breakpoint at %s:%" Pd " "
+ "(token %" Pd ") (address %#" Px ")\n",
report_bp ? "hit" : "ignore",
bpt->IsInternal() ? "internal" : "user",
String::Handle(bpt->SourceUrl()).ToCString(),
« no previous file with comments | « runtime/vm/dart_api_state.h ('k') | runtime/vm/debugger_api_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698