mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Code generation (missing external access and source locations).
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user