/** ** \file ast/break-exp.hxx ** \brief Inline methods of ast::BreakExp. */ #pragma once #include // Hint: this needs to be done at TC-3. namespace ast { // FIXME DONE: Some code was deleted here. inline const Exp* BreakExp::def_get() const { return def_; } inline Exp* BreakExp::def_get() { return def_; } // FIXME DONE: Some code was deleted here. inline void BreakExp::def_set(Exp* def) { def_ = def; } } // namespace ast