Browse Source

Added doxygen comment.

cl-refactor
chriseth 10 years ago
parent
commit
debab8c26f
  1. 1
      libsolidity/AST.h

1
libsolidity/AST.h

@ -345,6 +345,7 @@ public:
Expression& getCondition() const { return *m_condition; }
Statement& getTrueStatement() const { return *m_trueBody; }
/// @returns the "else" part of the if statement or nullptr if there is no "else" part.
Statement* getFalseStatement() const { return m_falseBody.get(); }
private:

Loading…
Cancel
Save