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

Unified Diff: runtime/vm/object.cc

Issue 1170503004: Initial Timeline Events (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 6 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: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index fdcb170e59cf5bf6dbf4f104a25535e66cc38522..051c5b211e564e9e9c405587633b526b7ee2d9d1 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -6604,6 +6604,12 @@ RawString* Function::PrettyName() const {
}
+const char* Function::QualifiedUserVisibleNameCString() const {
+ const String& str = String::Handle(QualifiedUserVisibleName());
+ return str.ToCString();
+}
+
+
RawString* Function::UserVisibleName() const {
return PrettyName();
}

Powered by Google App Engine
This is Rietveld 408576698