11 lines
324 B
C++
11 lines
324 B
C++
#include "ast/InlineNode/InlineCode.h"
|
|
|
|
namespace ast {
|
|
NodeKind InlineCode::getKind() const {
|
|
return NodeKind::InlineCode;
|
|
}
|
|
|
|
void InlineCode::repr(std::ostream &os, int indent) const {
|
|
os << getIndent(indent) << toString(getKind()) << " inline code: " << this->inlineCodeString << '\n';
|
|
}
|
|
} |