|
LLDB mainline
|
#include <DILAST.h>
Public Member Functions | |
| ConditionalNode (uint32_t location, ASTNodeUP condition, ASTNodeUP true_op, ASTNodeUP false_op) | |
| llvm::Expected< lldb::ValueObjectSP > | Accept (Visitor *v) const override |
| ASTNode & | GetCondition () const |
| ASTNode & | GetTrueOperand () const |
| ASTNode & | GetFalseOperand () const |
| Public Member Functions inherited from lldb_private::dil::ASTNode | |
| ASTNode (uint32_t location, NodeKind kind) | |
| virtual | ~ASTNode ()=default |
| virtual bool | IsConstLiteral () const |
| uint32_t | GetLocation () const |
| NodeKind | GetKind () const |
Static Public Member Functions | |
| static bool | classof (const ASTNode &node) |
Private Attributes | |
| ASTNodeUP | m_condition |
| ASTNodeUP | m_true_op |
| ASTNodeUP | m_false_op |
|
inline |
Definition at line 345 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), lldb_private::dil::eConditionalNode, m_condition, m_false_op, and m_true_op.
|
overridevirtual |
Implements lldb_private::dil::ASTNode.
Definition at line 112 of file DILAST.cpp.
References lldb_private::dil::Visitor::Visit().
Definition at line 357 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), lldb_private::dil::eConditionalNode, and lldb_private::dil::ASTNode::GetKind().
|
inline |
Definition at line 353 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), and m_condition.
Referenced by lldb_private::dil::Interpreter::Visit().
|
inline |
Definition at line 355 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), and m_false_op.
Referenced by lldb_private::dil::Interpreter::Visit().
|
inline |
Definition at line 354 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), and m_true_op.
Referenced by lldb_private::dil::Interpreter::Visit().
|
private |
Definition at line 362 of file DILAST.h.
Referenced by ConditionalNode(), and GetCondition().
|
private |
Definition at line 364 of file DILAST.h.
Referenced by ConditionalNode(), and GetFalseOperand().
|
private |
Definition at line 363 of file DILAST.h.
Referenced by ConditionalNode(), and GetTrueOperand().