diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-20 01:30:38 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-07-31 07:39:18 +0800 |
commit | f74cff622dd0eb8d4e64c014731e00fb9ea1d078 (patch) | |
tree | e0e813a0777d4c293549cc00ff492576a9a8960a /libsolidity/interface/CompilerStack.h | |
parent | bc13365a7b3920c361ff2ae5f1a9bb7e98ad07b2 (diff) | |
download | dexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.tar dexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.tar.gz dexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.tar.bz2 dexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.tar.lz dexon-solidity-f74cff622dd0eb8d4e64c014731e00fb9ea1d078.tar.xz 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.h | 3 |
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; |