diff options
author | Gav Wood <i@gavwood.com> | 2015-01-09 14:39:30 +0800 |
---|---|---|
committer | Gav Wood <i@gavwood.com> | 2015-01-09 14:39:30 +0800 |
commit | 29591d6ecfaf1a00ac405b1a46fe366daa00bd71 (patch) | |
tree | 2c68fc0c94b1abe666a91bccefd5048d9a9852b0 | |
parent | ffce12b7ee412cbd29dd0873a3e894dd7133ca4e (diff) | |
download | dexon-solidity-29591d6ecfaf1a00ac405b1a46fe366daa00bd71.tar.gz dexon-solidity-29591d6ecfaf1a00ac405b1a46fe366daa00bd71.tar.zst dexon-solidity-29591d6ecfaf1a00ac405b1a46fe366daa00bd71.zip |
Documentation update.
-rw-r--r-- | CompilerStack.cpp | 1 | ||||
-rw-r--r-- | CompilerStack.h | 5 | ||||
-rw-r--r-- | ExpressionCompiler.h | 1 | ||||
-rw-r--r-- | GlobalContext.cpp | 1 |
4 files changed, 6 insertions, 2 deletions
diff --git a/CompilerStack.cpp b/CompilerStack.cpp index 1c883a7f..a0d6691d 100644 --- a/CompilerStack.cpp +++ b/CompilerStack.cpp @@ -16,6 +16,7 @@ */ /** * @author Christian <c@ethdev.com> + * @author Gav Wood <g@ethdev.com> * @date 2014 * Full-stack compiler that converts a source code string to bytecode. */ diff --git a/CompilerStack.h b/CompilerStack.h index d6378ea1..91836585 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -16,6 +16,7 @@ */ /** * @author Christian <c@ethdev.com> + * @author Gav Wood <g@ethdev.com> * @date 2014 * Full-stack compiler that converts a source code string to bytecode. */ @@ -82,13 +83,13 @@ public: /// Returns a string representing the contract interface in JSON. /// Prerequisite: Successful call to parse or compile. std::string const& getInterface(std::string const& _contractName = "") const; - /// Returns a string representing the contract interface in JSON. + /// Returns a string representing the contract interface in Solidity. /// Prerequisite: Successful call to parse or compile. std::string const& getSolidityInterface(std::string const& _contractName = "") const; /// Returns a string representing the contract's documentation in JSON. /// Prerequisite: Successful call to parse or compile. /// @param type The type of the documentation to get. - /// Can be one of 3 types defined at @c DocumentationType + /// Can be one of 4 types defined at @c DocumentationType std::string const& getJsonDocumentation(std::string const& _contractName, DocumentationType _type) const; /// @returns the previously used scanner, useful for counting lines during error reporting. diff --git a/ExpressionCompiler.h b/ExpressionCompiler.h index c0ee4ab4..e39bcddb 100644 --- a/ExpressionCompiler.h +++ b/ExpressionCompiler.h @@ -16,6 +16,7 @@ */ /** * @author Christian <c@ethdev.com> + * @author Gav Wood <g@ethdev.com> * @date 2014 * Solidity AST to EVM bytecode compiler for expressions. */ diff --git a/GlobalContext.cpp b/GlobalContext.cpp index bf2ed479..633331a9 100644 --- a/GlobalContext.cpp +++ b/GlobalContext.cpp @@ -16,6 +16,7 @@ */ /** * @author Christian <c@ethdev.com> + * @author Gav Wood <g@ethdev.com> * @date 2014 * Container of the (implicit and explicit) global objects. */ |