Files
2026-05-18 20:19:17 +03:00

12 lines
216 B
C++

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