diff options
author | chriseth <c@ethdev.com> | 2014-11-05 02:52:04 +0800 |
---|---|---|
committer | chriseth <c@ethdev.com> | 2014-11-05 02:52:04 +0800 |
commit | 1de66d6e9ea5ad04f96247895a867be53e42da7c (patch) | |
tree | dcd2d7a8f596825704d386656240b4446c99f4a1 | |
parent | ef546e789a31a8ef5728625db38a673c1d9faed4 (diff) | |
download | dexon-solidity-1de66d6e9ea5ad04f96247895a867be53e42da7c.tar.gz dexon-solidity-1de66d6e9ea5ad04f96247895a867be53e42da7c.tar.zst dexon-solidity-1de66d6e9ea5ad04f96247895a867be53e42da7c.zip |
Added doxygen comment.
-rw-r--r-- | AST.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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: |