diff options
Diffstat (limited to 'tiger-compiler/src/ast/object-exp.hxx')
| -rw-r--r-- | tiger-compiler/src/ast/object-exp.hxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tiger-compiler/src/ast/object-exp.hxx b/tiger-compiler/src/ast/object-exp.hxx new file mode 100644 index 0000000..38fd5f6 --- /dev/null +++ b/tiger-compiler/src/ast/object-exp.hxx @@ -0,0 +1,16 @@ +/** + ** \file ast/object-exp.hxx + ** \brief Inline methods of ast::ObjectExp. + */ + +#pragma once + +#include <ast/object-exp.hh> + +namespace ast +{ + + inline const NameTy& ObjectExp::type_name_get() const { return *type_name_; } + inline NameTy& ObjectExp::type_name_get() { return *type_name_; } + +} // namespace ast |
