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

Unified Diff: vm/object.h

Issue 10826191: Improve the stack trace output to be more readable. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 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 | « vm/dart_api_impl_test.cc ('k') | vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/object.h
===================================================================
--- vm/object.h (revision 10396)
+++ vm/object.h (working copy)
@@ -1335,6 +1335,8 @@
class Function : public Object {
public:
RawString* name() const { return raw_ptr()->name_; }
+ RawString* UserVisibleName() const;
+ RawString* QualifiedUserVisibleName() const;
// Build a string of the form '<T, R>(T, [b: B, c: C]) => R' representing the
// internal signature of the given function.
@@ -1668,6 +1670,8 @@
class Field : public Object {
public:
RawString* name() const { return raw_ptr()->name_; }
+ RawString* UserVisibleName() const;
+
bool is_static() const { return raw_ptr()->is_static_; }
bool is_final() const { return raw_ptr()->is_final_; }
bool is_const() const { return raw_ptr()->is_const_; }
« no previous file with comments | « vm/dart_api_impl_test.cc ('k') | vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698