/** ** \file ast/while-exp.hxx ** \brief Inline methods of ast::WhileExp. */ #pragma once #include namespace ast { inline const Exp& WhileExp::test_get() const { return *test_; } inline Exp& WhileExp::test_get() { return *test_; } inline const Exp& WhileExp::body_get() const { return *body_; } inline Exp& WhileExp::body_get() { return *body_; } } // namespace ast