Bash++
Bash++ compiler internal documentation
BashVariable.h
Go to the documentation of this file.
1
7#pragma once
8
9#include <AST/ASTNode.h>
10
11namespace AST {
12
13class BashVariable : public ASTNode {
14 protected:
16 public:
18 constexpr AST::NodeType getType() const override { return static_type; }
19
21 return m_TEXT;
22 }
23
24 void setText(const AST::Token<std::string>& text) {
25 m_TEXT = text;
26 }
27
28 std::ostream& prettyPrint(std::ostream& os, int indentation_level = 0) const override {
29 std::string indent(indentation_level * PRETTYPRINT_INDENTATION_AMOUNT, ' ');
30 os << indent << "(BashVariable\n"
31 << indent << " ${" << m_TEXT;
32 for (const auto& child : children) {
33 os << std::endl;
34 child->prettyPrint(os, indentation_level + 1);
35 }
36 os << "})" << std::flush;
37 return os;
38 }
39};
40
41} // namespace AST
#define PRETTYPRINT_INDENTATION_AMOUNT
Definition ASTNode.h:19
The base class for all non-terminal nodes in the Bash++ AST. Each ASTNode contains information about ...
Definition ASTNode.h:29
std::vector< std::shared_ptr< ASTNode > > children
Definition ASTNode.h:31
Definition BashVariable.h:13
const AST::Token< std::string > & TEXT() const
Definition BashVariable.h:20
void setText(const AST::Token< std::string > &text)
Definition BashVariable.h:24
constexpr AST::NodeType getType() const override
Definition BashVariable.h:18
static constexpr AST::NodeType static_type
Definition BashVariable.h:17
AST::Token< std::string > m_TEXT
Definition BashVariable.h:15
std::ostream & prettyPrint(std::ostream &os, int indentation_level=0) const override
Definition BashVariable.h:28
A class representing a token in the Bash++ AST. Tokens store their value along with line and column i...
Definition Token.h:22
Definition AccessModifier.h:9
NodeType
Definition NodeTypes.h:10