![Logo](logo.png) |
User Guide
|
Go to the documentation of this file.
43 std::shared_ptr<ModToken>
token;
107 return "ExpressionStatement";
115 return std::static_pointer_cast<ExpressionStatement>(shared_from_this());
122 return std::static_pointer_cast<const ExpressionStatement>(shared_from_this());
std::shared_ptr< Expression > get_expression() const noexcept
Getter for member variable ExpressionStatement::expression.
Abstract base class for all constant visitors implementation.
AstNodeType get_node_type() const noexcept override
Return type (ast::AstNodeType) of ast node.
bool is_expression_statement() const noexcept override
Check if the ast node is an instance of ast::ExpressionStatement.
virtual ~ExpressionStatement()=default
THIS FILE IS GENERATED AT BUILD TIME AND SHALL NOT BE EDITED.
std::shared_ptr< ModToken > token
token with location information
std::shared_ptr< Ast > get_shared_ptr() override
Get std::shared_ptr from this pointer of the current ast node.
Abstract Syntax Tree (AST) related implementations.
std::shared_ptr< Expression > expression
TODO.
AstNodeType
Enum type for every AST node type.
Auto generated AST classes declaration.
std::string get_node_type_name() const noexcept override
Return type (ast::AstNodeType) of ast node as std::string.
Abstract base class for all visitors implementation.
ExpressionStatement * clone() const override
Return a copy of the current node.
void accept(visitor::Visitor &v) override
accept (or visit) the current AST node using provided visitor
@ EXPRESSION_STATEMENT
type of ast::ExpressionStatement
void set_parent_in_children()
Set this object as parent for all the children.
void visit_children(visitor::Visitor &v) override
visit children i.e.
const ModToken * get_token() const noexcept override
Return associated token for the current ast node.
Base class for all expressions in the NMODL.
std::shared_ptr< const Ast > get_shared_ptr() const override
Get std::shared_ptr from this pointer of the current ast node.
void set_token(const ModToken &tok)
Set token for the current ast node.
Represent token returned by scanner.
void set_expression(std::shared_ptr< Expression > &&expression)
Setter for member variable ExpressionStatement::expression (rvalue reference)
ExpressionStatement(Expression *expression)