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