aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/CompilerStack.h
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-06-20 01:30:38 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-07-31 07:39:18 +0800
commitf74cff622dd0eb8d4e64c014731e00fb9ea1d078 (patch)
treee0e813a0777d4c293549cc00ff492576a9a8960a /libsolidity/interface/CompilerStack.h
parentbc13365a7b3920c361ff2ae5f1a9bb7e98ad07b2 (diff)
downloaddexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.tar.gz
dexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.tar.zst
dexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.zip
Properly explain all the analsys steps in CompilerStack
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r--libsolidity/interface/CompilerStack.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h
index 0578ac86..7b144660 100644
--- a/libsolidity/interface/CompilerStack.h
+++ b/libsolidity/interface/CompilerStack.h
@@ -352,8 +352,9 @@ private:
std::vector<Remapping> m_remappings;
std::map<std::string const, Source> m_sources;
std::shared_ptr<GlobalContext> m_globalContext;
- std::map<ASTNode const*, std::shared_ptr<DeclarationContainer>> m_scopes;
std::vector<Source const*> m_sourceOrder;
+ /// This is updated during compilation.
+ std::map<ASTNode const*, std::shared_ptr<DeclarationContainer>> m_scopes;
std::map<std::string const, Contract> m_contracts;
ErrorList m_errorList;
ErrorReporter m_errorReporter;