diff options
author | chriseth <chris@ethereum.org> | 2017-07-06 00:24:51 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2017-07-06 00:27:32 +0800 |
commit | da48bcc51e56d7a088b8e21c45aa12299babbd39 (patch) | |
tree | a9b21dde1adca93cfa069b9af221c4e2f241c28a | |
parent | 05a26fc98c1201057c618c536ca0537e456c9b15 (diff) | |
download | dexon-solidity-da48bcc51e56d7a088b8e21c45aa12299babbd39.tar.gz dexon-solidity-da48bcc51e56d7a088b8e21c45aa12299babbd39.tar.zst dexon-solidity-da48bcc51e56d7a088b8e21c45aa12299babbd39.zip |
Only output AST if the analysis was successful.
-rw-r--r-- | Changelog.md | 1 | ||||
-rw-r--r-- | libsolidity/interface/StandardCompiler.cpp | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Changelog.md b/Changelog.md index b4415978..8e740866 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,7 @@ ### 0.4.13 (unreleased) Bugfixes: + * Compiler Interface: Only output AST if analysis was successful. * Code Generator: Correctly unregister modifier variables. ### 0.4.12 (2017-07-03) diff --git a/libsolidity/interface/StandardCompiler.cpp b/libsolidity/interface/StandardCompiler.cpp index e677afc8..4aeabbdd 100644 --- a/libsolidity/interface/StandardCompiler.cpp +++ b/libsolidity/interface/StandardCompiler.cpp @@ -357,7 +357,7 @@ Json::Value StandardCompiler::compileInternal(Json::Value const& _input) if (errors.size() > 0) output["errors"] = errors; - bool parsingSuccess = m_compilerStack.state() >= CompilerStack::State::ParsingSuccessful; + bool analysisSuccess = m_compilerStack.state() >= CompilerStack::State::AnalysisSuccessful; bool compilationSuccess = m_compilerStack.state() == CompilerStack::State::CompilationSuccessful; /// Inconsistent state - stop here to receive error reports from users @@ -366,7 +366,7 @@ Json::Value StandardCompiler::compileInternal(Json::Value const& _input) output["sources"] = Json::objectValue; unsigned sourceIndex = 0; - for (auto const& source: parsingSuccess ? m_compilerStack.sourceNames() : vector<string>()) + for (auto const& source: analysisSuccess ? m_compilerStack.sourceNames() : vector<string>()) { Json::Value sourceResult = Json::objectValue; sourceResult["id"] = sourceIndex++; |