12 lines
268 B
C++
12 lines
268 B
C++
#pragma once
|
|
|
|
#include "ast/InlineNode/InlineNode.h"
|
|
|
|
namespace ast {
|
|
struct InlineCode : public InlineNode {
|
|
std::string inlineCodeString;
|
|
|
|
NodeKind getKind() const override;
|
|
void repr(std::ostream &os, int indent) const override;
|
|
};
|
|
} |