2014-10-30 21:52:15 +00:00
|
|
|
/*
|
2016-11-18 23:13:20 +00:00
|
|
|
This file is part of solidity.
|
2014-10-30 21:52:15 +00:00
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2014-10-30 21:52:15 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2016-11-18 23:13:20 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2014-10-30 21:52:15 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2016-11-18 23:13:20 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2014-10-30 21:52:15 +00:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @author Christian <c@ethdev.com>
|
2015-01-09 06:39:30 +00:00
|
|
|
* @author Gav Wood <g@ethdev.com>
|
2014-10-30 21:52:15 +00:00
|
|
|
* @date 2014
|
|
|
|
* Full-stack compiler that converts a source code string to bytecode.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2014-11-11 16:41:48 +00:00
|
|
|
#include <ostream>
|
2014-10-30 21:52:15 +00:00
|
|
|
#include <string>
|
|
|
|
#include <memory>
|
2015-03-02 00:13:10 +00:00
|
|
|
#include <vector>
|
2016-01-12 00:04:39 +00:00
|
|
|
#include <functional>
|
2014-12-03 16:45:12 +00:00
|
|
|
#include <boost/noncopyable.hpp>
|
2017-01-10 13:15:48 +00:00
|
|
|
#include <boost/filesystem.hpp>
|
2015-01-28 07:50:53 +00:00
|
|
|
#include <json/json.h>
|
2014-10-30 21:52:15 +00:00
|
|
|
#include <libdevcore/Common.h>
|
2015-01-09 16:02:39 +00:00
|
|
|
#include <libdevcore/FixedHash.h>
|
2015-05-07 11:32:26 +00:00
|
|
|
#include <libevmasm/SourceLocation.h>
|
2015-09-10 10:01:05 +00:00
|
|
|
#include <libevmasm/LinkerObject.h>
|
2017-05-11 13:26:35 +00:00
|
|
|
#include <libsolidity/interface/ErrorReporter.h>
|
2017-04-10 11:48:41 +00:00
|
|
|
#include <libsolidity/interface/ReadFile.h>
|
2014-10-30 21:52:15 +00:00
|
|
|
|
2015-03-02 16:34:43 +00:00
|
|
|
namespace dev
|
|
|
|
{
|
2015-03-02 00:13:10 +00:00
|
|
|
|
2015-03-02 16:34:43 +00:00
|
|
|
namespace eth
|
|
|
|
{
|
2015-10-07 13:57:17 +00:00
|
|
|
class Assembly;
|
2015-03-02 16:34:43 +00:00
|
|
|
class AssemblyItem;
|
|
|
|
using AssemblyItems = std::vector<AssemblyItem>;
|
2015-03-02 00:13:10 +00:00
|
|
|
}
|
|
|
|
|
2015-03-02 16:34:43 +00:00
|
|
|
namespace solidity
|
|
|
|
{
|
2014-10-30 21:52:15 +00:00
|
|
|
|
2014-11-20 17:33:23 +00:00
|
|
|
// forward declarations
|
|
|
|
class Scanner;
|
2017-01-31 21:59:56 +00:00
|
|
|
class ASTNode;
|
2014-11-20 17:33:23 +00:00
|
|
|
class ContractDefinition;
|
2015-05-26 09:27:59 +00:00
|
|
|
class FunctionDefinition;
|
2014-12-03 06:46:55 +00:00
|
|
|
class SourceUnit;
|
2014-11-20 17:33:23 +00:00
|
|
|
class Compiler;
|
|
|
|
class GlobalContext;
|
2017-05-10 09:56:21 +00:00
|
|
|
class Natspec;
|
2015-10-16 11:48:38 +00:00
|
|
|
class Error;
|
2017-01-31 21:59:56 +00:00
|
|
|
class DeclarationContainer;
|
2014-12-03 15:40:37 +00:00
|
|
|
|
2014-11-11 16:41:48 +00:00
|
|
|
/**
|
|
|
|
* Easy to use and self-contained Solidity compiler with as few header dependencies as possible.
|
|
|
|
* It holds state and can be used to either step through the compilation stages (and abort e.g.
|
|
|
|
* before compilation to bytecode) or run the whole compilation in one call.
|
|
|
|
*/
|
2014-12-03 16:45:12 +00:00
|
|
|
class CompilerStack: boost::noncopyable
|
2014-10-30 21:52:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-07-03 10:58:24 +00:00
|
|
|
enum State {
|
|
|
|
Empty,
|
|
|
|
SourcesSet,
|
|
|
|
ParsingSuccessful,
|
|
|
|
AnalysisSuccessful,
|
|
|
|
CompilationSuccessful
|
|
|
|
};
|
|
|
|
|
2016-01-12 00:04:39 +00:00
|
|
|
/// Creates a new compiler stack.
|
2017-04-21 13:44:52 +00:00
|
|
|
/// @param _readFile callback to used to read files for import statements. Must return
|
|
|
|
/// and must not emit exceptions.
|
2017-07-13 19:06:04 +00:00
|
|
|
explicit CompilerStack(ReadCallback::Callback const& _readFile = ReadCallback::Callback()):
|
2017-05-11 13:26:35 +00:00
|
|
|
m_readFile(_readFile),
|
|
|
|
m_errorList(),
|
|
|
|
m_errorReporter(m_errorList) {}
|
2014-12-05 14:27:07 +00:00
|
|
|
|
2017-07-26 21:16:02 +00:00
|
|
|
/// @returns the list of errors that occured during parsing and type checking.
|
2017-08-17 00:14:15 +00:00
|
|
|
ErrorList const& errors() const { return m_errorReporter.errors(); }
|
2017-07-26 21:16:02 +00:00
|
|
|
|
|
|
|
/// @returns the current state.
|
|
|
|
State state() const { return m_stackState; }
|
|
|
|
|
|
|
|
/// Resets the compiler to a state where the sources are not parsed or even removed.
|
|
|
|
/// Sets the state to SourcesSet if @a _keepSources is true, otherwise to Empty.
|
|
|
|
/// All settings, with the exception of remappings, are reset.
|
|
|
|
void reset(bool _keepSources = false);
|
|
|
|
|
2016-06-07 17:44:32 +00:00
|
|
|
/// Sets path remappings in the format "context:prefix=target"
|
|
|
|
void setRemappings(std::vector<std::string> const& _remappings);
|
|
|
|
|
2017-07-17 10:49:45 +00:00
|
|
|
/// Sets library addresses. Addresses are cleared iff @a _libraries is missing.
|
|
|
|
/// Will not take effect before running compile.
|
|
|
|
void setLibraries(std::map<std::string, h160> const& _libraries = std::map<std::string, h160>{})
|
|
|
|
{
|
|
|
|
m_libraries = _libraries;
|
|
|
|
}
|
|
|
|
|
2017-07-17 10:54:02 +00:00
|
|
|
/// Changes the optimiser settings.
|
|
|
|
/// Will not take effect before running compile.
|
|
|
|
void setOptimiserSettings(bool _optimize, unsigned _runs = 200)
|
|
|
|
{
|
|
|
|
m_optimize = _optimize;
|
|
|
|
m_optimizeRuns = _runs;
|
|
|
|
}
|
|
|
|
|
2017-09-13 18:43:16 +00:00
|
|
|
/// Sets the list of requested contract names. If empty, no filtering is performed and every contract
|
|
|
|
/// found in the supplied sources is compiled. Names are cleared iff @a _contractNames is missing.
|
|
|
|
void setRequestedContractNames(std::set<std::string> const& _contractNames = std::set<std::string>{})
|
|
|
|
{
|
|
|
|
m_requestedContractNames = _contractNames;
|
|
|
|
}
|
|
|
|
|
2017-08-15 11:35:06 +00:00
|
|
|
/// @arg _metadataLiteralSources When true, store sources as literals in the contract metadata.
|
|
|
|
void useMetadataLiteralSources(bool _metadataLiteralSources) { m_metadataLiteralSources = _metadataLiteralSources; }
|
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
/// Adds a source object (e.g. file) to the parser. After this, parse has to be called again.
|
2014-12-18 13:39:16 +00:00
|
|
|
/// @returns true if a source object by the name already existed and was replaced.
|
2015-02-20 17:15:34 +00:00
|
|
|
bool addSource(std::string const& _name, std::string const& _content, bool _isLibrary = false);
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2014-12-03 16:45:12 +00:00
|
|
|
/// Parses all source units that were added
|
2015-09-21 17:43:56 +00:00
|
|
|
/// @returns false on error.
|
|
|
|
bool parse();
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2017-07-17 10:43:56 +00:00
|
|
|
/// Performs the analysis steps (imports, scopesetting, syntaxCheck, referenceResolving,
|
2017-08-15 11:35:06 +00:00
|
|
|
/// typechecking, staticAnalysis) on previously parsed sources.
|
2017-04-26 15:03:36 +00:00
|
|
|
/// @returns false on error.
|
|
|
|
bool analyze();
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2017-04-26 15:03:36 +00:00
|
|
|
/// Parses and analyzes all source units that were added
|
|
|
|
/// @returns false on error.
|
|
|
|
bool parseAndAnalyze();
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2014-12-05 14:35:05 +00:00
|
|
|
/// Compiles the source units that were previously added and parsed.
|
2015-09-21 17:43:56 +00:00
|
|
|
/// @returns false on error.
|
2017-07-17 10:54:02 +00:00
|
|
|
bool compile();
|
2014-11-11 16:41:48 +00:00
|
|
|
|
2017-07-26 21:16:02 +00:00
|
|
|
/// @returns the list of sources (paths) used
|
|
|
|
std::vector<std::string> sourceNames() const;
|
|
|
|
|
|
|
|
/// @returns a mapping assigning each source name its index inside the vector returned
|
|
|
|
/// by sourceNames().
|
|
|
|
std::map<std::string, unsigned> sourceIndices() const;
|
|
|
|
|
|
|
|
/// @returns the previously used scanner, useful for counting lines during error reporting.
|
2017-08-21 19:35:27 +00:00
|
|
|
Scanner const& scanner(std::string const& _sourceName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
|
|
|
/// @returns the parsed source unit with the supplied name.
|
2017-08-21 19:35:27 +00:00
|
|
|
SourceUnit const& ast(std::string const& _sourceName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
|
|
|
/// Helper function for logs printing. Do only use in error cases, it's quite expensive.
|
|
|
|
/// line and columns are numbered starting from 1 with following order:
|
|
|
|
/// start line, start column, end line, end column
|
|
|
|
std::tuple<int, int, int, int> positionFromSourceLocation(SourceLocation const& _sourceLocation) const;
|
|
|
|
|
2017-08-15 11:35:06 +00:00
|
|
|
/// @returns a list of the contract names in the sources.
|
|
|
|
std::vector<std::string> contractNames() const;
|
|
|
|
|
2017-08-21 20:49:58 +00:00
|
|
|
/// @returns the name of the last contract.
|
|
|
|
std::string const lastContractName() const;
|
|
|
|
|
2017-07-26 21:16:02 +00:00
|
|
|
/// @returns either the contract's name or a mixture of its name and source file, sanitized for filesystem use
|
|
|
|
std::string const filesystemFriendlyName(std::string const& _contractName) const;
|
|
|
|
|
2015-09-11 17:35:01 +00:00
|
|
|
/// @returns the assembled object for a contract.
|
2017-08-21 19:35:27 +00:00
|
|
|
eth::LinkerObject const& object(std::string const& _contractName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2015-09-11 17:35:01 +00:00
|
|
|
/// @returns the runtime object for the contract.
|
2017-08-21 19:35:27 +00:00
|
|
|
eth::LinkerObject const& runtimeObject(std::string const& _contractName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2016-03-07 15:55:53 +00:00
|
|
|
/// @returns the bytecode of a contract that uses an already deployed contract via DELEGATECALL.
|
2015-07-31 17:23:31 +00:00
|
|
|
/// The returned bytes will contain a sequence of 20 bytes of the format "XXX...XXX" which have to
|
|
|
|
/// substituted by the actual address. Note that this sequence starts end ends in three X
|
|
|
|
/// characters but can contain anything in between.
|
2017-08-21 19:35:27 +00:00
|
|
|
eth::LinkerObject const& cloneObject(std::string const& _contractName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2015-03-02 00:13:10 +00:00
|
|
|
/// @returns normal contract assembly items
|
2017-08-21 19:35:27 +00:00
|
|
|
eth::AssemblyItems const* assemblyItems(std::string const& _contractName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2015-03-02 00:13:10 +00:00
|
|
|
/// @returns runtime contract assembly items
|
2017-08-21 19:35:27 +00:00
|
|
|
eth::AssemblyItems const* runtimeAssemblyItems(std::string const& _contractName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2016-07-01 08:14:50 +00:00
|
|
|
/// @returns the string that provides a mapping between bytecode and sourcecode or a nullptr
|
|
|
|
/// if the contract does not (yet) have bytecode.
|
2017-08-21 19:35:27 +00:00
|
|
|
std::string const* sourceMapping(std::string const& _contractName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2016-07-01 08:14:50 +00:00
|
|
|
/// @returns the string that provides a mapping between runtime bytecode and sourcecode.
|
|
|
|
/// if the contract does not (yet) have bytecode.
|
2017-08-21 19:35:27 +00:00
|
|
|
std::string const* runtimeSourceMapping(std::string const& _contractName) const;
|
2016-12-11 22:17:38 +00:00
|
|
|
|
2017-08-30 01:17:15 +00:00
|
|
|
/// @return a verbose text representation of the assembly.
|
2015-03-03 17:11:10 +00:00
|
|
|
/// @arg _sourceCodes is the map of input files to source code strings
|
2014-11-11 16:41:48 +00:00
|
|
|
/// Prerequisite: Successful compilation.
|
2017-08-21 19:35:27 +00:00
|
|
|
std::string assemblyString(std::string const& _contractName, StringMap _sourceCodes = StringMap()) const;
|
2017-06-15 09:22:47 +00:00
|
|
|
|
|
|
|
/// @returns a JSON representation of the assembly.
|
|
|
|
/// @arg _sourceCodes is the map of input files to source code strings
|
|
|
|
/// Prerequisite: Successful compilation.
|
2017-08-21 19:35:27 +00:00
|
|
|
Json::Value assemblyJSON(std::string const& _contractName, StringMap _sourceCodes = StringMap()) const;
|
2014-11-11 16:41:48 +00:00
|
|
|
|
2017-05-06 16:59:16 +00:00
|
|
|
/// @returns a JSON representing the contract ABI.
|
2014-11-11 16:41:48 +00:00
|
|
|
/// Prerequisite: Successful call to parse or compile.
|
2017-08-21 19:35:27 +00:00
|
|
|
Json::Value const& contractABI(std::string const& _contractName) const;
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2017-07-27 10:28:04 +00:00
|
|
|
/// @returns a JSON representing the contract's user documentation.
|
|
|
|
/// Prerequisite: Successful call to parse or compile.
|
|
|
|
Json::Value const& natspecUser(std::string const& _contractName) const;
|
|
|
|
|
|
|
|
/// @returns a JSON representing the contract's developer documentation.
|
2014-12-03 12:50:04 +00:00
|
|
|
/// Prerequisite: Successful call to parse or compile.
|
2017-07-27 10:28:04 +00:00
|
|
|
Json::Value const& natspecDev(std::string const& _contractName) const;
|
2017-06-13 16:02:57 +00:00
|
|
|
|
2017-06-15 10:33:01 +00:00
|
|
|
/// @returns a JSON representing a map of method identifiers (hashes) to function names.
|
|
|
|
Json::Value methodIdentifiers(std::string const& _contractName) const;
|
2017-06-13 16:02:57 +00:00
|
|
|
|
2017-07-26 21:16:02 +00:00
|
|
|
/// @returns the Contract Metadata
|
2017-05-19 15:10:32 +00:00
|
|
|
std::string const& metadata(std::string const& _contractName) const;
|
2014-11-11 16:41:48 +00:00
|
|
|
|
2017-04-10 13:00:24 +00:00
|
|
|
/// @returns a JSON representing the estimated gas usage for contract creation, internal and external functions
|
|
|
|
Json::Value gasEstimates(std::string const& _contractName) const;
|
|
|
|
|
2014-11-11 16:41:48 +00:00
|
|
|
private:
|
2014-12-03 16:45:12 +00:00
|
|
|
/**
|
|
|
|
* Information pertaining to one source unit, filled gradually during parsing and compilation.
|
|
|
|
*/
|
|
|
|
struct Source
|
|
|
|
{
|
|
|
|
std::shared_ptr<Scanner> scanner;
|
|
|
|
std::shared_ptr<SourceUnit> ast;
|
2015-02-21 17:55:55 +00:00
|
|
|
bool isLibrary = false;
|
2016-07-01 08:14:50 +00:00
|
|
|
void reset() { scanner.reset(); ast.reset(); }
|
2014-12-03 16:45:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Contract
|
|
|
|
{
|
2015-01-07 15:46:15 +00:00
|
|
|
ContractDefinition const* contract = nullptr;
|
2014-12-03 16:45:12 +00:00
|
|
|
std::shared_ptr<Compiler> compiler;
|
2015-09-10 10:01:05 +00:00
|
|
|
eth::LinkerObject object;
|
|
|
|
eth::LinkerObject runtimeObject;
|
|
|
|
eth::LinkerObject cloneObject;
|
2017-05-19 15:10:32 +00:00
|
|
|
std::string metadata; ///< The metadata json that will be hashed into the chain.
|
2017-05-10 09:54:23 +00:00
|
|
|
mutable std::unique_ptr<Json::Value const> abi;
|
2016-11-15 01:04:00 +00:00
|
|
|
mutable std::unique_ptr<Json::Value const> userDocumentation;
|
|
|
|
mutable std::unique_ptr<Json::Value const> devDocumentation;
|
2016-07-01 08:14:50 +00:00
|
|
|
mutable std::unique_ptr<std::string const> sourceMapping;
|
|
|
|
mutable std::unique_ptr<std::string const> runtimeSourceMapping;
|
2014-12-03 16:45:12 +00:00
|
|
|
};
|
2017-07-26 21:16:02 +00:00
|
|
|
|
2016-01-12 00:04:39 +00:00
|
|
|
/// Loads the missing sources from @a _ast (named @a _path) using the callback
|
|
|
|
/// @a m_readFile and stores the absolute paths of all imports in the AST annotations.
|
|
|
|
/// @returns the newly loaded sources.
|
|
|
|
StringMap loadMissingSources(SourceUnit const& _ast, std::string const& _path);
|
2016-06-07 17:44:32 +00:00
|
|
|
std::string applyRemapping(std::string const& _path, std::string const& _context);
|
2014-12-03 16:45:12 +00:00
|
|
|
void resolveImports();
|
2015-12-09 16:35:20 +00:00
|
|
|
/// @returns the absolute path corresponding to @a _path relative to @a _reference.
|
|
|
|
std::string absolutePath(std::string const& _path, std::string const& _reference) const;
|
2017-01-11 16:56:35 +00:00
|
|
|
/// Helper function to return path converted strings.
|
|
|
|
std::string sanitizePath(std::string const& _path) const { return boost::filesystem::path(_path).generic_string(); }
|
|
|
|
|
2017-09-13 18:43:16 +00:00
|
|
|
/// @returns true if the contract is requested to be compiled.
|
|
|
|
bool isRequestedContract(ContractDefinition const& _contract) const;
|
|
|
|
|
2015-10-07 13:57:17 +00:00
|
|
|
/// Compile a single contract and put the result in @a _compiledContracts.
|
|
|
|
void compileContract(
|
|
|
|
ContractDefinition const& _contract,
|
|
|
|
std::map<ContractDefinition const*, eth::Assembly const*>& _compiledContracts
|
|
|
|
);
|
2016-11-14 10:46:43 +00:00
|
|
|
void link();
|
|
|
|
|
2017-08-21 19:35:27 +00:00
|
|
|
Contract const& contract(std::string const& _contractName) const;
|
|
|
|
Source const& source(std::string const& _sourceName) const;
|
2014-12-03 16:45:12 +00:00
|
|
|
|
2017-06-15 10:35:30 +00:00
|
|
|
/// @returns the parsed contract with the supplied name. Throws an exception if the contract
|
|
|
|
/// does not exist.
|
|
|
|
ContractDefinition const& contractDefinition(std::string const& _contractName) const;
|
|
|
|
|
2017-05-19 15:10:32 +00:00
|
|
|
std::string createMetadata(Contract const& _contract) const;
|
2016-07-01 08:14:50 +00:00
|
|
|
std::string computeSourceMapping(eth::AssemblyItems const& _items) const;
|
2017-05-10 09:54:23 +00:00
|
|
|
Json::Value const& contractABI(Contract const&) const;
|
2017-07-27 10:28:04 +00:00
|
|
|
Json::Value const& natspecUser(Contract const&) const;
|
|
|
|
Json::Value const& natspecDev(Contract const&) const;
|
2016-07-01 08:14:50 +00:00
|
|
|
|
2017-06-01 12:28:32 +00:00
|
|
|
/// @returns the offset of the entry point of the given function into the list of assembly items
|
|
|
|
/// or zero if it is not found or does not exist.
|
|
|
|
size_t functionEntryPoint(
|
|
|
|
std::string const& _contractName,
|
|
|
|
FunctionDefinition const& _function
|
|
|
|
) const;
|
|
|
|
|
2016-06-07 17:44:32 +00:00
|
|
|
struct Remapping
|
|
|
|
{
|
|
|
|
std::string context;
|
|
|
|
std::string prefix;
|
|
|
|
std::string target;
|
|
|
|
};
|
|
|
|
|
2017-07-13 19:06:04 +00:00
|
|
|
ReadCallback::Callback m_readFile;
|
|
|
|
ReadCallback::Callback m_smtQuery;
|
2016-11-14 10:46:43 +00:00
|
|
|
bool m_optimize = false;
|
2016-11-30 13:00:51 +00:00
|
|
|
unsigned m_optimizeRuns = 200;
|
2017-09-13 18:43:16 +00:00
|
|
|
std::set<std::string> m_requestedContractNames;
|
2016-11-14 10:46:43 +00:00
|
|
|
std::map<std::string, h160> m_libraries;
|
2016-06-07 17:44:32 +00:00
|
|
|
/// list of path prefix remappings, e.g. mylibrary: github.com/ethereum = /usr/local/ethereum
|
|
|
|
/// "context:prefix=target"
|
|
|
|
std::vector<Remapping> m_remappings;
|
2014-12-06 01:39:58 +00:00
|
|
|
std::map<std::string const, Source> m_sources;
|
2014-12-03 16:45:12 +00:00
|
|
|
std::shared_ptr<GlobalContext> m_globalContext;
|
2017-01-31 21:59:56 +00:00
|
|
|
std::map<ASTNode const*, std::shared_ptr<DeclarationContainer>> m_scopes;
|
2014-12-03 16:45:12 +00:00
|
|
|
std::vector<Source const*> m_sourceOrder;
|
2014-12-06 01:39:58 +00:00
|
|
|
std::map<std::string const, Contract> m_contracts;
|
2017-05-11 13:26:35 +00:00
|
|
|
ErrorList m_errorList;
|
|
|
|
ErrorReporter m_errorReporter;
|
2017-01-17 12:02:01 +00:00
|
|
|
bool m_metadataLiteralSources = false;
|
2017-04-28 13:24:59 +00:00
|
|
|
State m_stackState = Empty;
|
2014-10-30 21:52:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|