/** ** \file ast/string-exp.cc ** \brief Implementation of ast::StringExp. */ #include #include namespace ast { StringExp::StringExp(const Location& location, const std::string& value) : Exp(location) , value_(value) {} void StringExp::accept(ConstVisitor& v) const { v(*this); } void StringExp::accept(Visitor& v) { v(*this); } } // namespace ast