#pragma once #include "ast/Node.h" namespace ast { struct InlineNode : public Node { virtual ~InlineNode() = default; }; }