/** ** \file ast/exp.cc ** \brief Implementation of ast::Exp. */ #include #include namespace ast { Exp::Exp(const Location& location) : Ast(location) , Typable() {} } // namespace ast