#pragma once #include "ast/InlineNode/InlineNode.h" #include "utils/shorten.hpp" namespace ast { struct Text : public InlineNode { std::string text; NodeKind getKind() const override; void repr(std::ostream &os, int indent) const override; }; }