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

Unified Diff: runtime/vm/object.cc

Issue 2818933003: Fix #28740 demangle constructors in stack traces (A.A becomes new A). (Closed)
Patch Set: Fix ctor demangle test comments, kind() == ctor, and test status updates Created 3 years, 8 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 | « no previous file | runtime/vm/symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.cc
diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
index b012e5a80fe6bba680491c37853f7619fb627382..6225d594a2f2410c280c797c60909f7f9bed3158 100644
--- a/runtime/vm/object.cc
+++ b/runtime/vm/object.cc
@@ -7147,11 +7147,16 @@ RawString* Function::QualifiedName(NameVisibility name_visibility) const {
}
const Class& cls = Class::Handle(Owner());
if (!cls.IsTopLevel()) {
- result = String::Concat(Symbols::Dot(), result, Heap::kOld);
- const String& cls_name = String::Handle(name_visibility == kScrubbedName
- ? cls.ScrubbedName()
- : cls.UserVisibleName());
- result = String::Concat(cls_name, result, Heap::kOld);
+ if (kind() == RawFunction::kConstructor) {
+ result = String::Concat(Symbols::ConstructorStacktracePrefix(), result,
+ Heap::kOld);
+ } else {
+ result = String::Concat(Symbols::Dot(), result, Heap::kOld);
+ const String& cls_name = String::Handle(name_visibility == kScrubbedName
+ ? cls.ScrubbedName()
+ : cls.UserVisibleName());
+ result = String::Concat(cls_name, result, Heap::kOld);
+ }
}
return result.raw();
}
« no previous file with comments | « no previous file | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698