diff options
author | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-02 00:03:04 +0800 |
---|---|---|
committer | Lefteris Karapetsas <lefteris@refu.co> | 2014-12-02 00:03:04 +0800 |
commit | 43d6726dd78e35bf79fa2da3824c2916c5e6b0a8 (patch) | |
tree | 13299ee2623a590ace54c3554156033dffa98779 /CompilerStack.h | |
parent | 3fc2708d657525162567b663a07cf8cb5b1c59aa (diff) | |
download | dexon-solidity-43d6726dd78e35bf79fa2da3824c2916c5e6b0a8.tar.gz dexon-solidity-43d6726dd78e35bf79fa2da3824c2916c5e6b0a8.tar.zst dexon-solidity-43d6726dd78e35bf79fa2da3824c2916c5e6b0a8.zip |
Exporting Natspec documentation to a JSON interface
- Adding a getDocumentation() function to solidity compiler stack
so that we can obtain the natspec interface for a contract
- Adding libjsoncpp as a dependency of libsolidity. This is done
in a dirty way, using libjsonrpc-cpp s an intermediate dependency
for the moment. Will fix soon.
- Start of a test file for Natspec exporting to JSON
Diffstat (limited to 'CompilerStack.h')
-rw-r--r-- | CompilerStack.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 6cae8660..74784c5e 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -62,6 +62,9 @@ public: /// Returns a string representing the contract interface in JSON. /// Prerequisite: Successful call to parse or compile. std::string const& getInterface(); + /// Returns a string representing the contract documentation in JSON. + /// Prerequisite: Successful call to parse or compile. + std::string const& getDocumentation(); /// Returns the previously used scanner, useful for counting lines during error reporting. Scanner const& getScanner() const { return *m_scanner; } @@ -77,6 +80,7 @@ private: std::shared_ptr<ContractDefinition> m_contractASTNode; bool m_parseSuccessful; std::string m_interface; + std::string m_documentation; std::shared_ptr<Compiler> m_compiler; bytes m_bytecode; }; |