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