/** ** \file ast/method-call-exp.hxx ** \brief Inline methods of ast::MethodCallExp. */ #pragma once #include namespace ast { inline const Var& MethodCallExp::object_get() const { return *object_; } inline Var& MethodCallExp::object_get() { return *object_; } // FIXME DONE: Some code was deleted here. inline const MethodDec* MethodCallExp::def_get() const { return def_; } inline MethodDec* MethodCallExp::def_get() { return def_; } // FIXME DONE: Some code was deleted here. inline void MethodCallExp::def_set(MethodDec* def) { def_ = def; } } // namespace ast