mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Moving all Interface and Documentation functionality to own class
- Creating the Interface Handler class which will take care of the parsing of Natspec comments and of interfacing with and outputing to JSON files. - Will also handle the ABI interface creation
This commit is contained in:
parent
d0758ccf1e
commit
9ce5a4ebcf
5
main.cpp
5
main.cpp
@ -135,8 +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 << "Natspec user documentation: " << compiler.getUserDocumentation() << endl;
|
||||
cout << "Interface specification: " << compiler.getJsonDocumentation(ABI_INTERFACE) << endl;
|
||||
cout << "Natspec user documentation: " << compiler.getJsonDocumentation(NATSPEC_USER) << endl;
|
||||
cout << "Natspec developer documentation: " << compiler.getJsonDocumentation(NATSPEC_DEV) << endl;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user