HomeSort by: relevance | last modified time | path
    Searched defs:IfStatementASTNode (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/elftosb/dist/elftosb2/
ElftosbAST.cpp 1052 #pragma mark = IfStatementASTNode =
1056 IfStatementASTNode::IfStatementASTNode(const IfStatementASTNode & other)
1065 m_nextIf = dynamic_cast<IfStatementASTNode*>(other.m_nextIf->clone());
ElftosbAST.h 830 class IfStatementASTNode : public StatementASTNode
833 IfStatementASTNode() : StatementASTNode(), m_ifStatements(), m_nextIf(), m_elseStatements() {}
834 IfStatementASTNode(const IfStatementASTNode & other);
836 virtual ASTNode * clone() const { return new IfStatementASTNode(*this); }
844 void setNextIf(IfStatementASTNode * nextIf) { m_nextIf = nextIf; }
845 IfStatementASTNode * getNextIf() { return m_nextIf; }
853 smart_ptr<IfStatementASTNode> m_nextIf; //!< Link to next "else if". If this is non-NULL then #m_elseStatements must be NULL and vice-versa.

Completed in 16 milliseconds