#include <ored/scripting/ast.hpp>
Definition at line 227 of file ast.hpp.
◆ VariableNode()
Definition at line 228 of file ast.hpp.
std::vector< ASTNodePtr > args
◆ accept()
void accept |
( |
AcyclicVisitor & |
v | ) |
|
|
overridevirtual |
Reimplemented from ASTNode.
Definition at line 304 of file ast.cpp.
304 {
305 auto v1 = dynamic_cast<Visitor<VariableNode>*>(&v);
306 if (v1 != nullptr)
307 v1->visit(*this);
308 else
310}
virtual void accept(AcyclicVisitor &)
◆ name
◆ isCached
◆ isScalar
◆ cachedScalar
◆ cachedVector
std::vector<ValueType>* cachedVector = nullptr |