/** ** \file ast/int-exp.hxx ** \brief Inline methods of ast::IntExp. */ #pragma once #include namespace ast { inline int IntExp::value_get() const { return value_; } } // namespace ast