summaryrefslogtreecommitdiff
path: root/tiger-compiler/src/ast/array-ty.hxx
blob: c679b1c96ce91105e5478f68be5def680e2f0df3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 ** \file ast/array-ty.hxx
 ** \brief Inline methods of ast::ArrayTy.
 */

#pragma once

#include <ast/array-ty.hh>

namespace ast
{

  inline const NameTy& ArrayTy::base_type_get() const { return *base_type_; }
  inline NameTy& ArrayTy::base_type_get() { return *base_type_; }

} // namespace ast