blob: 9ca80e4a7f223ad94222b0eea51f6ec1b3ccc503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
** \file ast/escapable.cc
** \brief Implementation of ast::Escapable.
*/
#include <ast/escapable.hh>
#include <ast/visitor.hh>
namespace ast
{
// FIXME DONE: Some code was deleted here.
bool Escapable::escape_get() const { return escaping_; }
void Escapable::escape_set(bool escaped) { escaping_ = escaped; }
} // namespace ast
|