blob: 6bea70c3b50fd9113307a4d27857c5b28a98138e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
** \file ast/var.cc
** \brief Implementation of ast::Var.
*/
#include <ast/var.hh>
#include <ast/visitor.hh>
namespace ast
{
Var::Var(const Location& location)
: Exp(location)
{}
} // namespace ast
|