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

Unified Diff: runtime/vm/kernel.cc

Issue 2863493002: Support BottomType in the VM Kernel reader (Closed)
Patch Set: 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
Index: runtime/vm/kernel.cc
diff --git a/runtime/vm/kernel.cc b/runtime/vm/kernel.cc
index c5e6700c90a0a40fa0680ca49e894a3db367ccdc..afebbc180bdec0fbeae25a9e6bd72d060d31a8b4 100644
--- a/runtime/vm/kernel.cc
+++ b/runtime/vm/kernel.cc
@@ -1168,6 +1168,17 @@ void VoidType::AcceptDartTypeVisitor(DartTypeVisitor* visitor) {
void VoidType::VisitChildren(Visitor* visitor) {}
+BottomType::~BottomType() {}
+
+
+void BottomType::AcceptDartTypeVisitor(DartTypeVisitor* visitor) {
+ visitor->VisitBottomType(this);
+}
+
+
+void BottomType::VisitChildren(Visitor* visitor) {}
+
+
InterfaceType::~InterfaceType() {}
« no previous file with comments | « runtime/vm/kernel.h ('k') | runtime/vm/kernel_binary.h » ('j') | runtime/vm/kernel_to_il.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698