//===--- ExprVisitor.h - Visitor for Expr subclasses ------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // This file defines the ExprVisitor and ConstExprVisitor interfaces. // //===----------------------------------------------------------------------===// #ifndef LLVM_FLANG_AST_EXPRVISITOR_H #define LLVM_FLANG_AST_EXPRVISITOR_H #include "flang/Basic/MakePtr.h" #include "flang/AST/Expr.h" namespace flang { /// StmtVisitorBase - This class implements a simple visitor for Expr /// subclasses. template