|
LLDB mainline
|
#include <DILAST.h>
Public Member Functions | |
| BinaryOpNode (uint32_t location, BinaryOpKind kind, ASTNodeUP lhs, ASTNodeUP rhs) | |
| llvm::Expected< lldb::ValueObjectSP > | Accept (Visitor *v) const override |
| BinaryOpKind | GetKind () const |
| ASTNode & | GetLHS () const |
| ASTNode & | GetRHS () const |
| Public Member Functions inherited from lldb_private::dil::ASTNode | |
| ASTNode (uint32_t location, NodeKind kind) | |
| virtual | ~ASTNode ()=default |
| uint32_t | GetLocation () const |
| NodeKind | GetKind () const |
Static Public Member Functions | |
| static bool | classof (const ASTNode *node) |
Private Attributes | |
| BinaryOpKind | m_kind |
| ASTNodeUP | m_lhs |
| ASTNodeUP | m_rhs |
|
inline |
Definition at line 164 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), lldb_private::dil::eBinaryOpNode, m_kind, m_lhs, and m_rhs.
|
overridevirtual |
Implements lldb_private::dil::ASTNode.
Definition at line 42 of file DILAST.cpp.
References lldb_private::dil::Visitor::Visit().
Definition at line 175 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), lldb_private::dil::eBinaryOpNode, and lldb_private::dil::ASTNode::GetKind().
|
inline |
Definition at line 171 of file DILAST.h.
References m_kind.
Referenced by lldb_private::dil::Interpreter::Visit().
|
inline |
Definition at line 172 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), and m_lhs.
Referenced by lldb_private::dil::Interpreter::Visit().
|
inline |
Definition at line 173 of file DILAST.h.
References lldb_private::dil::ASTNode::ASTNode(), and m_rhs.
Referenced by lldb_private::dil::Interpreter::Visit().
|
private |
Definition at line 180 of file DILAST.h.
Referenced by BinaryOpNode(), and GetKind().
|
private |
Definition at line 181 of file DILAST.h.
Referenced by BinaryOpNode(), and GetLHS().
|
private |
Definition at line 182 of file DILAST.h.
Referenced by BinaryOpNode(), and GetRHS().