OpenVDB
12.0.0
|
#include <openvdb_ax/ast/AST.h>
Inherits Expression.
Public Types | |
using | UniquePtr = std::unique_ptr< CommaOperator > |
enum | NodeType { TreeNode, StatementListNode, BlockNode, ConditionalStatementNode, CommaOperatorNode, LoopNode, KeywordNode, AssignExpressionNode, CrementNode, UnaryOperatorNode, BinaryOperatorNode, TernaryOperatorNode, CastNode, AttributeNode, FunctionCallNode, ExternalVariableNode, DeclareLocalNode, ArrayPackNode, ArrayUnpackNode, LocalNode, ValueBoolNode, ValueInt16Node, ValueInt32Node, ValueInt64Node, ValueFloatNode, ValueDoubleNode, ValueStrNode } |
An enumerated list of node types for all concrete node types. These can be used for faster evaluation of a given concrete node using the virtual function table via Node::nodetype() rather than performing a dynamic_cast/calling Node::isType. More... | |
using | Ptr = std::shared_ptr< Node > |
Public Member Functions | |
CommaOperator () | |
Construct a new CommaOperator with an expr set. More... | |
CommaOperator (Expression *expression) | |
Construct a new CommaOperator with a single expression, transferring ownership of the expression to the CommaOperator and updating parent data on the expression. If the expression is a nullptr, it is ignored. More... | |
CommaOperator (const std::vector< Expression * > &expressions) | |
Construct a new CommaOperator from a vector of expression, transferring ownership of all valid expression to the CommaOperator and updating parent data on the statement. Only valid (non null) expression are added to the block. More... | |
CommaOperator (const CommaOperator &other) | |
Deep copy constructor for an CommaOperator, performing a deep copy on every held expression, ensuring parent information is updated. More... | |
~CommaOperator () override=default | |
CommaOperator * | copy () const override final |
The deep copy method for a Node. More... | |
NodeType | nodetype () const override |
Virtual method for accessing node type information. More... | |
const char * | nodename () const override |
Virtual method for accessing node name information. More... | |
const char * | subname () const override |
Virtual method for accessing node name information. More... | |
const Expression * | basetype () const override |
Virtual method for accessing a node's base class. Note that if this is called explicitly on an instance of ast::Node (the top most base class) a nullptr is returned. This is primarily used by the Visitor to support hierarchical visits. More... | |
size_t | children () const override final |
Virtual method for accessing child information. Returns the number of children a given AST node owns. More... | |
const Expression * | child (const size_t i) const override final |
Virtual method for accessing child information. Returns a const pointer to a child node at the given index. If the index is out of range, a nullptr is returned. More... | |
bool | replacechild (const size_t i, Node *node) override final |
Virtual method that attempted to replace a child at a given index with a provided node type. More... | |
size_t | size () const |
Alias for CommaOperator::children. More... | |
bool | empty () const |
Query whether this Expression list holds any valid expressions. More... | |
void | append (Expression *expr) |
Append an expression to this CommaOperator, transferring ownership to the CommaOperator and updating parent data on the expression. If the expression is a nullptr, it is ignored. More... | |
Name/Type | |
template<typename NodeT > | |
bool | isType () const |
Query whether or not this node is of a specific (derived) type. This method should be used to check if a node is of a particular abstract type. When checking concrete types, it's generally more efficient to check the return value of Node::nodetype() More... | |
Child Queries | |
int64_t | childidx () const |
Returns the child index of this node in relation to its parent, or -1 if no valid index is found (usually representing the top most node (i.e. Tree) More... | |
Replacement | |
bool | replace (Node *node) |
In place replacement. Attempts to replace this node at its specific location within its Abstract Syntax Tree. On a successful replacement, this node is destroyed, the provided node is inserted in its place and ownership is transferred to the parent node. No further calls to this node can be made on successful replacements. More... | |
Parent | |
const Node * | parent () const |
Access a const pointer to this nodes parent. More... | |
void | setParent (Node *parent) |
Set this node's parent. This is used during construction of an AST and should not be used. More... | |
using UniquePtr = std::unique_ptr<CommaOperator> |
|
inherited |
An enumerated list of node types for all concrete node types. These can be used for faster evaluation of a given concrete node using the virtual function table via Node::nodetype() rather than performing a dynamic_cast/calling Node::isType.
|
inline |
Construct a new CommaOperator with an expr set.
|
inline |
Construct a new CommaOperator with a single expression, transferring ownership of the expression to the CommaOperator and updating parent data on the expression. If the expression is a nullptr, it is ignored.
expression | The Expression to construct from |
|
inline |
Construct a new CommaOperator from a vector of expression, transferring ownership of all valid expression to the CommaOperator and updating parent data on the statement. Only valid (non null) expression are added to the block.
expressions | The vector of expressions to construct from |
|
inline |
Deep copy constructor for an CommaOperator, performing a deep copy on every held expression, ensuring parent information is updated.
other | A const reference to another CommaOperator to deep copy |
|
overridedefault |
|
inline |
Append an expression to this CommaOperator, transferring ownership to the CommaOperator and updating parent data on the expression. If the expression is a nullptr, it is ignored.
|
inlineoverridevirtual |
Virtual method for accessing a node's base class. Note that if this is called explicitly on an instance of ast::Node (the top most base class) a nullptr is returned. This is primarily used by the Visitor to support hierarchical visits.
Reimplemented from Expression.
|
inlinefinaloverridevirtual |
Virtual method for accessing child information. Returns a const pointer to a child node at the given index. If the index is out of range, a nullptr is returned.
Implements Node.
|
inlineinherited |
Returns the child index of this node in relation to its parent, or -1 if no valid index is found (usually representing the top most node (i.e. Tree)
|
inlinefinaloverridevirtual |
Virtual method for accessing child information. Returns the number of children a given AST node owns.
Implements Node.
|
inlinefinaloverridevirtual |
The deep copy method for a Node.
Implements Expression.
|
inline |
Query whether this Expression list holds any valid expressions.
|
inlineinherited |
Query whether or not this node is of a specific (derived) type. This method should be used to check if a node is of a particular abstract type. When checking concrete types, it's generally more efficient to check the return value of Node::nodetype()
NodeT | The node type to query against. |
|
inlineoverridevirtual |
Virtual method for accessing node name information.
Implements Node.
|
inlineoverridevirtual |
Virtual method for accessing node type information.
Implements Node.
|
inlineinherited |
Access a const pointer to this nodes parent.
|
inlineinherited |
In place replacement. Attempts to replace this node at its specific location within its Abstract Syntax Tree. On a successful replacement, this node is destroyed, the provided node is inserted in its place and ownership is transferred to the parent node. No further calls to this node can be made on successful replacements.
node | The node to insert on a successful replacement. |
|
inlinefinaloverridevirtual |
Virtual method that attempted to replace a child at a given index with a provided node type.
Reimplemented from Node.
|
inlineinherited |
Set this node's parent. This is used during construction of an AST and should not be used.
parent | The parent to set |
|
inline |
Alias for CommaOperator::children.
|
inlineoverridevirtual |
Virtual method for accessing node name information.
Implements Node.