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