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

Unified Diff: runtime/lib/stacktrace.cc

Issue 953973003: - Add a _fatal helper function into dart:core, so that we can (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 10 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/lib/object.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/stacktrace.cc
===================================================================
--- runtime/lib/stacktrace.cc (revision 43993)
+++ runtime/lib/stacktrace.cc (working copy)
@@ -45,7 +45,7 @@
Array::Handle(Array::MakeArray(pc_offset_list));
const Stacktrace& stacktrace = Stacktrace::Handle(
Stacktrace::New(code_array, pc_offset_array));
- OS::PrintErr("=== Current Trace:\n%s\n===\n", stacktrace.ToCString());
hausner 2015/02/24 22:19:21 Why are you removing the newline after the last st
Ivan Posva 2015/02/24 23:27:18 Yes, ends with a newline and then the output looke
+ OS::PrintErr("=== Current Trace:\n%s===\n", stacktrace.ToCString());
}
} // namespace dart
« no previous file with comments | « runtime/lib/object.cc ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698