mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge remote-tracking branch 'ethereum/develop' into sol_import
Conflicts: libsolidity/CompilerStack.cpp libsolidity/CompilerStack.h libsolidity/InterfaceHandler.cpp libsolidity/InterfaceHandler.h solc/main.cpp test/solidityJSONInterfaceTest.cpp test/solidityNatspecJSON.cpp
This commit is contained in:
commit
1f209f1b7d
6
main.cpp
6
main.cpp
@ -147,9 +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.getJsonDocumentation(contract, ABI_INTERFACE) << endl
|
||||
<< "Natspec user documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_USER) << endl
|
||||
<< "Natspec developer documentation: " << compiler.getJsonDocumentation(contract, NATSPEC_DEV) << endl;
|
||||
<< "Interface specification: " << compiler.getJsonDocumentation(contract, DocumentationType::ABI_INTERFACE) << endl
|
||||
<< "Natspec user documentation: " << compiler.getJsonDocumentation(contract, DocumentationType::NATSPEC_USER) << endl
|
||||
<< "Natspec developer documentation: " << compiler.getJsonDocumentation(contract, DocumentationType::NATSPEC_DEV) << endl;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user