/** ** \file ast/escapable.cc ** \brief Implementation of ast::Escapable. */ #include #include 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