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

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

namespace ast
{
  Ty::Ty(const Location& location)
    : Ast(location)
    , Typable()
    , TypeConstructor()
  {}

} // namespace ast