#pragma once #include "BlockNode.h" struct CodeBlock : public BlockNode { std::string code; NodeKind getKind() const { return NodeKind::CodeBlock; } };