Fix: natspec annotations on constructors

- natspec annotations on constructore where ignored.
This commit is contained in:
Alexander Arlt
2018-08-08 21:53:35 +02:00
parent d634d20b5b
commit f76d4d5919
5 changed files with 216 additions and 27 deletions
+6
View File
@@ -54,6 +54,12 @@ public:
private:
/// @returns concatenation of all content under the given tag name.
static std::string extractDoc(std::multimap<std::string, DocTag> const& _tags, std::string const& _name);
/// Helper-function that will create a json object with dev specific annotations, if present.
/// @param _tags docTags that are used.
/// @return A JSON representation
/// of the contract's developer documentation
static Json::Value devDocumentation(std::multimap<std::string, DocTag> const &_tags);
};
} //solidity NS