7 lines
110 B
C
7 lines
110 B
C
#pragma once
|
|
|
|
#include "ast/Node.h"
|
|
|
|
struct InlineNode : public Node {
|
|
virtual ~InlineNode() = default;
|
|
}; |