/** ** \file ast/for-exp.hxx ** \brief Inline methods of ast::ForExp. */ #pragma once #include namespace ast { inline const VarDec& ForExp::vardec_get() const { return *vardec_; } inline VarDec& ForExp::vardec_get() { return *vardec_; } inline const Exp& ForExp::hi_get() const { return *hi_; } inline Exp& ForExp::hi_get() { return *hi_; } inline const Exp& ForExp::body_get() const { return *body_; } inline Exp& ForExp::body_get() { return *body_; } } // namespace ast