diff options
Diffstat (limited to 'src/expr-visitor.cc')
-rw-r--r-- | src/expr-visitor.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/expr-visitor.cc b/src/expr-visitor.cc index 369c63bb..b50400c4 100644 --- a/src/expr-visitor.cc +++ b/src/expr-visitor.cc @@ -215,6 +215,10 @@ Result ExprVisitor::HandleDefaultState(Expr* expr) { CHECK_RESULT(delegate_->OnCallIndirectExpr(cast<CallIndirectExpr>(expr))); break; + case ExprType::CallRef: + CHECK_RESULT(delegate_->OnCallRefExpr(cast<CallRefExpr>(expr))); + break; + case ExprType::Compare: CHECK_RESULT(delegate_->OnCompareExpr(cast<CompareExpr>(expr))); break; |