summaryrefslogtreecommitdiff
path: root/src/expr-visitor.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr-visitor.cc')
-rw-r--r--src/expr-visitor.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/expr-visitor.cc b/src/expr-visitor.cc
index d346f3b7..e7fee9bf 100644
--- a/src/expr-visitor.cc
+++ b/src/expr-visitor.cc
@@ -219,6 +219,10 @@ Result ExprVisitor::HandleDefaultState(Expr* expr) {
CHECK_RESULT(delegate_->OnCallRefExpr(cast<CallRefExpr>(expr)));
break;
+ case ExprType::CodeMetadata:
+ CHECK_RESULT(delegate_->OnCodeMetadataExpr(cast<CodeMetadataExpr>(expr)));
+ break;
+
case ExprType::Compare:
CHECK_RESULT(delegate_->OnCompareExpr(cast<CompareExpr>(expr)));
break;