diff options
author | Lu Guanqun <guanqun.lu@gmail.com> | 2016-01-19 10:16:13 +0800 |
---|---|---|
committer | Lu Guanqun <guanqun.lu@gmail.com> | 2016-01-19 10:16:13 +0800 |
commit | c8886ed5cfc4f0b7bf4e8d52eb94da7137c9b70e (patch) | |
tree | 1c8d6e62a0ba7d9a7ef00608548295ae01d97d4f /libsolidity/analysis/SyntaxChecker.cpp | |
parent | e130bc7e7cc647b15c448133f725a060910da587 (diff) | |
download | dexon-solidity-c8886ed5cfc4f0b7bf4e8d52eb94da7137c9b70e.tar.gz dexon-solidity-c8886ed5cfc4f0b7bf4e8d52eb94da7137c9b70e.tar.zst dexon-solidity-c8886ed5cfc4f0b7bf4e8d52eb94da7137c9b70e.zip |
code changes according to Chris's comments
Diffstat (limited to 'libsolidity/analysis/SyntaxChecker.cpp')
-rw-r--r-- | libsolidity/analysis/SyntaxChecker.cpp | 25 |
1 files changed, 9 insertions, 16 deletions
diff --git a/libsolidity/analysis/SyntaxChecker.cpp b/libsolidity/analysis/SyntaxChecker.cpp index 92743461..f1cdaf0f 100644 --- a/libsolidity/analysis/SyntaxChecker.cpp +++ b/libsolidity/analysis/SyntaxChecker.cpp @@ -42,36 +42,29 @@ void SyntaxChecker::syntaxError(SourceLocation const& _location, std::string con bool SyntaxChecker::visit(WhileStatement const& _whileStatement) { - _whileStatement.body().annotation().isInLoop = true; + m_inLoopDepth++; return true; } -bool SyntaxChecker::visit(ForStatement const& _forStatement) +void SyntaxChecker::endVisit(WhileStatement const& _whileStatement) { - _forStatement.body().annotation().isInLoop = true; - return true; + m_inLoopDepth--; } -bool SyntaxChecker::visit(Block const& _blockStatement) +bool SyntaxChecker::visit(ForStatement const& _forStatement) { - bool inLoop = _blockStatement.annotation().isInLoop; - for (auto& statement : _blockStatement.statements()) - statement->annotation().isInLoop = inLoop; + m_inLoopDepth++; return true; } -bool SyntaxChecker::visit(IfStatement const& _ifStatement) +void SyntaxChecker::endVisit(ForStatement const& _forStatement) { - bool inLoop = _ifStatement.annotation().isInLoop; - _ifStatement.trueStatement().annotation().isInLoop = inLoop; - if (_ifStatement.falseStatement()) - _ifStatement.falseStatement()->annotation().isInLoop = inLoop; - return true; + m_inLoopDepth--; } bool SyntaxChecker::visit(Continue const& _continueStatement) { - if (!_continueStatement.annotation().isInLoop) + if (m_inLoopDepth <= 0) // we're not in a for/while loop, report syntax error syntaxError(_continueStatement.location(), "\"continue\" has to be in a \"for\" or \"while\" loop."); return true; @@ -79,7 +72,7 @@ bool SyntaxChecker::visit(Continue const& _continueStatement) bool SyntaxChecker::visit(Break const& _breakStatement) { - if (!_breakStatement.annotation().isInLoop) + if (m_inLoopDepth <= 0) // we're not in a for/while loop, report syntax error syntaxError(_breakStatement.location(), "\"break\" has to be in a \"for\" or \"while\" loop."); return true; |