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