#pragma once #include "ast/InlineNode/InlineNode.h" struct InlineCode : public InlineNode { std::string inlineCodeString; NodeKind getKind() const override { return NodeKind::InlineCode; } void repr(std::ostream &os, int indent) const override { os << getIndent(indent) << toString(getKind()) << " inline code: " << this->inlineCodeString << '\n'; } };