#include "ast/BlockNode/Paragraph.h" namespace ast { NodeKind Paragraph::getKind() const { return NodeKind::Paragraph; } void Paragraph::repr(std::ostream &os, int indent) const { os << getIndent(indent) << toString(getKind()) << '\n'; for (const std::unique_ptr &child : children) { child->repr(os, indent + 1); } } }