blob: 00cb4bb3cf0dcf904888374f6e9b69e4fb2af918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
** \file ast/escapable.hxx
** \brief Inline methods of ast::Escapable.
*/
#pragma once
#include <ast/escapable.hh>
namespace ast
{
// FIXME DONE: Some code was deleted here.
inline FunctionDec* Escapable::def_get() const { return def_; }
inline void Escapable::def_set(FunctionDec* dec) { def_ = dec; }
} // namespace ast
|