From debab8c26fd7f71aa3c27d16181e91840acf5db4 Mon Sep 17 00:00:00 2001 From: chriseth Date: Tue, 4 Nov 2014 19:52:04 +0100 Subject: [PATCH] Added doxygen comment. --- libsolidity/AST.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libsolidity/AST.h b/libsolidity/AST.h index bbb73b080..43aa9bf5e 100644 --- a/libsolidity/AST.h +++ b/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: