diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-30 09:17:15 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-09-11 22:53:20 +0800 |
commit | bbfb16cf5ce903150bc3a141ac50553d8bf6d346 (patch) | |
tree | a79144b2c970f097f3bd1c8a6b3cdc27d0670ce8 /libsolidity/interface/CompilerStack.h | |
parent | 50570c6c794eee01af64751c884fb6cb68f8dffc (diff) | |
download | dexon-solidity-bbfb16cf5ce903150bc3a141ac50553d8bf6d346.tar.gz dexon-solidity-bbfb16cf5ce903150bc3a141ac50553d8bf6d346.tar.zst dexon-solidity-bbfb16cf5ce903150bc3a141ac50553d8bf6d346.zip |
Introduce assemblyString
Diffstat (limited to 'libsolidity/interface/CompilerStack.h')
-rw-r--r-- | libsolidity/interface/CompilerStack.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libsolidity/interface/CompilerStack.h b/libsolidity/interface/CompilerStack.h index 2f1b9bb3..f1bbae47 100644 --- a/libsolidity/interface/CompilerStack.h +++ b/libsolidity/interface/CompilerStack.h @@ -190,10 +190,10 @@ public: /// if the contract does not (yet) have bytecode. std::string const* runtimeSourceMapping(std::string const& _contractName = "") const; - /// Streams a verbose version of the assembly to @a _outStream. + /// @return a verbose text representation of the assembly. /// @arg _sourceCodes is the map of input files to source code strings /// Prerequisite: Successful compilation. - void assemblyStream(std::ostream& _outStream, std::string const& _contractName = "", StringMap _sourceCodes = StringMap()) const; + std::string assemblyString(std::string const& _contractName = "", StringMap _sourceCodes = StringMap()) const; /// @returns a JSON representation of the assembly. /// @arg _sourceCodes is the map of input files to source code strings |