aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.h
diff options
context:
space:
mode:
authordjuju <julfaber@gmail.com>2017-04-27 18:56:56 +0800
committerdjuju <julfaber@gmail.com>2017-04-27 18:56:56 +0800
commit5fd7942173a71f1cf7ca1cae0dcde1905482f004 (patch)
treeaf41cbfee47ebaf9648b0c614367bbf26f45b3ca /libsolidity/interface/CompilerStack.h
parent99a7aefb752f6b97475fb48da9c1c01d87af3056 (diff)
downloaddexon-solidity-5fd7942173a71f1cf7ca1cae0dcde1905482f004.tar.gz
dexon-solidity-5fd7942173a71f1cf7ca1cae0dcde1905482f004.tar.zst
dexon-solidity-5fd7942173a71f1cf7ca1cae0dcde1905482f004.zip
documentation, checks and renaming
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r--libsolidity/interface/CompilerStack.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h
index 4c7b0018..9a3221e5 100644
--- a/libsolidity/interface/CompilerStack.h
+++ b/libsolidity/interface/CompilerStack.h
@@ -104,7 +104,7 @@ public:
/// @returns false on error.
bool parse(std::string const& _sourceCode);
/// performs the analyisis steps (imports, scopesetting, syntaxCheck, referenceResolving,
- /// typechecking, staticAnalysis) on the set sources
+ /// typechecking, staticAnalysis) on previously set sources
/// @returns false on error.
bool analyze();
/// Parses and analyzes all source units that were added
@@ -276,7 +276,7 @@ private:
/// list of path prefix remappings, e.g. mylibrary: github.com/ethereum = /usr/local/ethereum
/// "context:prefix=target"
std::vector<Remapping> m_remappings;
- bool m_parseSuccessful;
+ bool m_success;
std::map<std::string const, Source> m_sources;
std::shared_ptr<GlobalContext> m_globalContext;
std::map<ASTNode const*, std::shared_ptr<DeclarationContainer>> m_scopes;