diff options
author | Christian <c@ethdev.com> | 2014-12-05 22:27:07 +0800 |
---|---|---|
committer | Christian <c@ethdev.com> | 2014-12-05 22:27:07 +0800 |
commit | f59f0dfa8c7104b9a50d27e956248053658f689c (patch) | |
tree | 7a59a537466ac4950de2ca786ee7d7ced5c7489c | |
parent | aae508748e0537c1afc0d9507c427cd5ca30189a (diff) | |
parent | 9ce5a4ebcfdea8751062aeae7dfa4de604c2c356 (diff) | |
download | dexon-solidity-f59f0dfa8c7104b9a50d27e956248053658f689c.tar dexon-solidity-f59f0dfa8c7104b9a50d27e956248053658f689c.tar.gz dexon-solidity-f59f0dfa8c7104b9a50d27e956248053658f689c.tar.bz2 dexon-solidity-f59f0dfa8c7104b9a50d27e956248053658f689c.tar.lz dexon-solidity-f59f0dfa8c7104b9a50d27e956248053658f689c.tar.xz dexon-solidity-f59f0dfa8c7104b9a50d27e956248053658f689c.tar.zst dexon-solidity-f59f0dfa8c7104b9a50d27e956248053658f689c.zip |
Merge remote-tracking branch 'ethereum/develop' into sol_import
Conflicts:
libsolidity/CompilerStack.cpp
libsolidity/CompilerStack.h
solc/main.cpp
-rw-r--r-- | main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -147,7 +147,9 @@ int main(int argc, char** argv) cout << "Opcodes:" << endl << eth::disassemble(compiler.getBytecode(contract)) << endl << "Binary: " << toHex(compiler.getBytecode(contract)) << endl - << "Interface specification: " << compiler.getInterface(contract) << endl; + << "Interface specification: " << compiler.getJsonDocumentation(contract, ABI_INTERFACE) << endl + << "Natspec user documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_USER) << endl + << "Natspec developer documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_DEV) << endl; } return 0; |