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

Unified Diff: runtime/vm/kernel.cc

Issue 2786083002: Read platform.dill in the VM. (Closed)
Patch Set: Allow main to be a field or getter. Created 3 years, 9 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/kernel.cc
diff --git a/runtime/vm/kernel.cc b/runtime/vm/kernel.cc
index 6953cea46d1e422c17a00c924b2534c468227bfc..0c479150bf46b640571c2737e753b987f5275291 100644
--- a/runtime/vm/kernel.cc
+++ b/runtime/vm/kernel.cc
@@ -18,7 +18,8 @@ void VisitList(List<T>* list, Visitor* visitor) {
}
-CanonicalName::CanonicalName() : is_referenced_(false) {}
+CanonicalName::CanonicalName()
+ : parent_(NULL), name_(NULL), is_referenced_(false) {}
CanonicalName::~CanonicalName() {

Powered by Google App Engine
This is Rietveld 408576698