12 lines
283 B
C++
12 lines
283 B
C++
#pragma once
|
|
|
|
#include "ast/InlineNode/InlineNode.h"
|
|
|
|
namespace ast {
|
|
struct Bold : public InlineNode {
|
|
std::vector<std::unique_ptr<InlineNode>> children;
|
|
|
|
NodeKind getKind() const override;
|
|
void repr(std::ostream &os, int indent) const override;
|
|
};
|
|
} |