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

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;
};
}