Merge remote-tracking branch 'ethereum/develop' into sol_import

Conflicts:
	libsolidity/CompilerStack.cpp
	libsolidity/CompilerStack.h
	solc/main.cpp
This commit is contained in:
Christian 2014-12-05 15:27:07 +01:00
commit f59f0dfa8c

View File

@ -147,7 +147,9 @@ int main(int argc, char** argv)
cout << "Opcodes:" << endl cout << "Opcodes:" << endl
<< eth::disassemble(compiler.getBytecode(contract)) << endl << eth::disassemble(compiler.getBytecode(contract)) << endl
<< "Binary: " << toHex(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; return 0;