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