diff options
author | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-12-07 00:34:50 +0800 |
---|---|---|
committer | Marek Kotewicz <marek.kotewicz@gmail.com> | 2014-12-07 00:34:50 +0800 |
commit | 4d729d62ad38ee72ece21b548199de7234046def (patch) | |
tree | ad0871904c81ad5601720807ebf7fbc6435113cf | |
parent | d8a65552d81454e0d3fa761d90cfe35263aafacf (diff) | |
parent | 122b42579ec9fa2d086247e07b03fbc68463c569 (diff) | |
download | dexon-solidity-4d729d62ad38ee72ece21b548199de7234046def.tar dexon-solidity-4d729d62ad38ee72ece21b548199de7234046def.tar.gz dexon-solidity-4d729d62ad38ee72ece21b548199de7234046def.tar.bz2 dexon-solidity-4d729d62ad38ee72ece21b548199de7234046def.tar.lz dexon-solidity-4d729d62ad38ee72ece21b548199de7234046def.tar.xz dexon-solidity-4d729d62ad38ee72ece21b548199de7234046def.tar.zst dexon-solidity-4d729d62ad38ee72ece21b548199de7234046def.zip |
Merge branch 'develop' into build_enhancement
-rw-r--r-- | main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -135,7 +135,9 @@ int main(int argc, char** argv) cout << "Opcodes:" << endl; cout << eth::disassemble(compiler.getBytecode()) << endl; cout << "Binary: " << toHex(compiler.getBytecode()) << endl; - cout << "Interface specification: " << compiler.getInterface() << endl; + cout << "Interface specification: " << compiler.getJsonDocumentation(DocumentationType::ABI_INTERFACE) << endl; + cout << "Natspec user documentation: " << compiler.getJsonDocumentation(DocumentationType::NATSPEC_USER) << endl; + cout << "Natspec developer documentation: " << compiler.getJsonDocumentation(DocumentationType::NATSPEC_DEV) << endl; return 0; } |