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

#pragma once

#include <ast/dec.hh>

namespace ast
{
  inline misc::symbol Dec::name_get() const { return name_; }
  inline void Dec::name_set(misc::symbol name) { name_ = name; }

} // namespace ast