summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/ast/ast.cc
blob: 136262fb6431a242da208751783b515656f5fbc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 ** \file ast/ast.cc
 ** \brief Implementation of ast::Ast.
 */

#include <ast/ast.hh>
#include <ast/visitor.hh>

namespace ast
{
  Ast::Ast(const Location& location)
    : location_(location)
  {}

} // namespace ast