#pragma once #include "ast/InlineNode/InlineNode.h" namespace ast { struct Bold : public InlineNode { std::vector> children; NodeKind getKind() const override; void repr(std::ostream &os, int indent) const override; }; }