13 lines
279 B
C++
13 lines
279 B
C++
#pragma once
|
|
|
|
#include "ast/InlineNode/InlineNode.h"
|
|
#include "utils/shorten.hpp"
|
|
|
|
namespace ast {
|
|
struct Text : public InlineNode {
|
|
std::string text;
|
|
|
|
NodeKind getKind() const override;
|
|
void repr(std::ostream &os, int indent) const override;
|
|
};
|
|
} |