diff options
Diffstat (limited to 'solc/CommandLineInterface.h')
-rw-r--r-- | solc/CommandLineInterface.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.h b/solc/CommandLineInterface.h index 1c40e26d..52854bac 100644 --- a/solc/CommandLineInterface.h +++ b/solc/CommandLineInterface.h @@ -21,10 +21,11 @@ */ #pragma once -#include <libsolidity/interface/CompilerStack.h> #include <memory> #include <boost/program_options.hpp> #include <boost/filesystem/path.hpp> +#include <libsolidity/interface/CompilerStack.h> +#include <libsolidity/inlineasm/AsmStack.h> namespace dev { @@ -52,6 +53,7 @@ private: /// Parse assembly input. bool assemble(); + void outputAssembly(); void outputCompilationResults(); @@ -91,6 +93,8 @@ private: std::map<std::string, h160> m_libraries; /// Solidity compiler stack std::unique_ptr<dev::solidity::CompilerStack> m_compiler; + /// Assembly stacks for assembly-only mode + std::map<std::string, assembly::InlineAssemblyStack> m_assemblyStacks; }; } |