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

Unified Diff: runtime/lib/object.cc

Issue 2572563004: Improve the casing of Stackmap and Stacktrace. (Closed)
Patch Set: Build fixes Created 4 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
« no previous file with comments | « runtime/include/dart_api.h ('k') | runtime/lib/stacktrace.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/object.cc
diff --git a/runtime/lib/object.cc b/runtime/lib/object.cc
index 6a7db559ec3a78d1293d9cb85edde40dde3c54b7..cc7614b9dd6223c20eea85752cc64b779b262c35 100644
--- a/runtime/lib/object.cc
+++ b/runtime/lib/object.cc
@@ -18,14 +18,14 @@ namespace dart {
DECLARE_FLAG(bool, trace_type_checks);
// Helper function in stacktrace.cc.
-void _printCurrentStacktrace();
+void _printCurrentStackTrace();
DEFINE_NATIVE_ENTRY(DartCore_fatal, 1) {
// The core library code entered an unrecoverable state.
const Instance& instance = Instance::CheckedHandle(arguments->NativeArgAt(0));
const char* msg = instance.ToCString();
OS::PrintErr("Fatal error in dart:core\n");
- _printCurrentStacktrace();
+ _printCurrentStackTrace();
FATAL(msg);
return Object::null();
}
« no previous file with comments | « runtime/include/dart_api.h ('k') | runtime/lib/stacktrace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698