aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElena Dimitrova <elenavdimitrova@gmail.com>2018-03-01 23:59:47 +0800
committerchriseth <chris@ethereum.org>2018-03-01 23:59:47 +0800
commitc9840c98f45e6fa9258ec4624219622f5f71c75c (patch)
tree43457e64f1e63e32a490abc0f482bbca71ddac8d
parenta0d006015e253b88626d2489e8cd8b5b537f5079 (diff)
downloaddexon-solidity-c9840c98f45e6fa9258ec4624219622f5f71c75c.tar
dexon-solidity-c9840c98f45e6fa9258ec4624219622f5f71c75c.tar.gz
dexon-solidity-c9840c98f45e6fa9258ec4624219622f5f71c75c.tar.bz2
dexon-solidity-c9840c98f45e6fa9258ec4624219622f5f71c75c.tar.lz
dexon-solidity-c9840c98f45e6fa9258ec4624219622f5f71c75c.tar.xz
dexon-solidity-c9840c98f45e6fa9258ec4624219622f5f71c75c.tar.zst
dexon-solidity-c9840c98f45e6fa9258ec4624219622f5f71c75c.zip
Documentation updates for internal constructors and function signature (#3365)
* Add a note explaining return values not included in function signature * Add section on Constructors in documentation * Improve documented definition for abstract contract * Add benefits of abstraction to documentation
-rw-r--r--docs/abi-spec.rst6
-rw-r--r--docs/contracts.rst35
2 files changed, 37 insertions, 4 deletions
diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst
index 07c8e0ce..4a61d91f 100644
--- a/docs/abi-spec.rst
+++ b/docs/abi-spec.rst
@@ -26,6 +26,10 @@ The first four bytes of the call data for a function call specifies the function
first (left, high-order in big-endian) four bytes of the Keccak (SHA-3) hash of the signature of the function. The signature is defined as the canonical expression of the basic prototype, i.e.
the function name with the parenthesised list of parameter types. Parameter types are split by a single comma - no spaces are used.
+.. note::
+ The return type of a function is not part of this signature. In :ref:`Solidity's function overloading <overload-function>` return types are not considered. The reason is to keep function call resolution context-independent.
+ The JSON description of the ABI however contains both inputs and outputs. See (the :ref:`JSON ABI <abi_json>`)
+
Argument Encoding
=================
@@ -290,6 +294,8 @@ In effect, a log entry using this ABI is described as:
For all fixed-length Solidity types, the ``EVENT_INDEXED_ARGS`` array contains the 32-byte encoded value directly. However, for *types of dynamic length*, which include ``string``, ``bytes``, and arrays, ``EVENT_INDEXED_ARGS`` will contain the *Keccak hash* of the encoded value, rather than the encoded value directly. This allows applications to efficiently query for values of dynamic-length types (by setting the hash of the encoded value as the topic), but leaves applications unable to decode indexed values they have not queried for. For dynamic-length types, application developers face a trade-off between fast search for predetermined values (if the argument is indexed) and legibility of arbitrary values (which requires that the arguments not be indexed). Developers may overcome this tradeoff and achieve both efficient search and arbitrary legibility by defining events with two arguments — one indexed, one not — intended to hold the same value.
+.. _abi_json:
+
JSON
====
diff --git a/docs/contracts.rst b/docs/contracts.rst
index 416dc649..967eb2c8 100644
--- a/docs/contracts.rst
+++ b/docs/contracts.rst
@@ -955,6 +955,31 @@ not known in the context of the class where it is used,
although its type is known. This is similar for ordinary
virtual method lookup.
+.. index:: ! constructor
+
+Constructors
+============
+A constructor is an optional function with the same name as the contract which is executed upon contract creation.
+Constructor functions can be either ``public`` or ``internal``.
+
+::
+
+ pragma solidity ^0.4.11;
+
+ contract A {
+ uint public a;
+
+ function A(uint _a) internal {
+ a = _a;
+ }
+ }
+
+ contract B is A(1) {
+ function B() public {}
+ }
+
+A constructor set as ``internal`` causes the contract to be marked as :ref:`abstract <abstract-contract>`.
+
.. index:: ! base;constructor
Arguments for Base Constructors
@@ -1027,11 +1052,13 @@ As an exception, a state variable getter can override a public function.
.. index:: ! contract;abstract, ! abstract contract
+.. _abstract-contract:
+
******************
Abstract Contracts
******************
-Contract functions can lack an implementation as in the following example (note that the function declaration header is terminated by ``;``)::
+Contracts are marked as abstract when at least one of their functions lacks an implementation as in the following example (note that the function declaration header is terminated by ``;``)::
pragma solidity ^0.4.0;
@@ -1039,9 +1066,7 @@ Contract functions can lack an implementation as in the following example (note
function utterance() public returns (bytes32);
}
-Such contracts cannot be compiled (even if they contain
-implemented functions alongside non-implemented functions),
-but they can be used as base contracts::
+Such contracts cannot be compiled (even if they contain implemented functions alongside non-implemented functions), but they can be used as base contracts::
pragma solidity ^0.4.0;
@@ -1065,6 +1090,8 @@ Example of a Function Type (a variable declaration, where the variable is of typ
function(address) external returns (address) foo;
+Abstract contracts decouple the definition of a contract from its implementation providing better extensibility and self-documentation and
+facilitating patterns like the `Template method <https://en.wikipedia.org/wiki/Template_method_pattern>`_ and removing code duplication.
.. index:: ! contract;interface, ! interface contract