diff options
author | Liana Husikyan <liana@ethdev.com> | 2015-04-17 23:41:41 +0800 |
---|---|---|
committer | Liana Husikyan <liana@ethdev.com> | 2015-04-17 23:41:41 +0800 |
commit | f829dad7e385aa9578d56fe926a4741f9f90c105 (patch) | |
tree | 1fb021476ff61aeebaa016d9178210150fd38c1f /CompilerStack.h | |
parent | c9812f7269704fcfa708d9b352b8344a5754a223 (diff) | |
download | dexon-solidity-f829dad7e385aa9578d56fe926a4741f9f90c105.tar dexon-solidity-f829dad7e385aa9578d56fe926a4741f9f90c105.tar.gz dexon-solidity-f829dad7e385aa9578d56fe926a4741f9f90c105.tar.bz2 dexon-solidity-f829dad7e385aa9578d56fe926a4741f9f90c105.tar.lz dexon-solidity-f829dad7e385aa9578d56fe926a4741f9f90c105.tar.xz dexon-solidity-f829dad7e385aa9578d56fe926a4741f9f90c105.tar.zst dexon-solidity-f829dad7e385aa9578d56fe926a4741f9f90c105.zip |
added asm-json flag to cl compiler
Conflicts:
libsolidity/CompilerStack.cpp
Diffstat (limited to 'CompilerStack.h')
-rw-r--r-- | CompilerStack.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 19c1ba4e..ef3d0966 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -102,8 +102,9 @@ public: /// Streams a verbose version of the assembly to @a _outStream. /// @arg _sourceCodes is the map of input files to source code strings + /// @arg _inJsonFromat shows weather the out should be in Json format /// Prerequisite: Successful compilation. - void streamAssembly(std::ostream& _outStream, std::string const& _contractName = "", StringMap _sourceCodes = StringMap()) const; + void streamAssembly(std::ostream& _outStream, std::string const& _contractName = "", StringMap _sourceCodes = StringMap(), bool _inJsonFormat = false) const; /// Returns a string representing the contract interface in JSON. /// Prerequisite: Successful call to parse or compile. |