mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
commit
4ab2e03be3
@ -154,6 +154,10 @@ Command Line and JSON Interfaces
|
|||||||
* The JSON AST fields ``constant`` and ``payable`` were removed. The
|
* The JSON AST fields ``constant`` and ``payable`` were removed. The
|
||||||
information is now present in the ``stateMutability`` field.
|
information is now present in the ``stateMutability`` field.
|
||||||
|
|
||||||
|
* The JSON AST field ``isConstructor`` of the ``FunctionDefinition``
|
||||||
|
node was replaced by a field called ``kind`` which can have the
|
||||||
|
value ``"constructor"``, ``"fallback"`` or ``"function"``.
|
||||||
|
|
||||||
Constructors
|
Constructors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
|
@ -463,7 +463,7 @@
|
|||||||
"documentation" : null,
|
"documentation" : null,
|
||||||
"id" : 36,
|
"id" : 36,
|
||||||
"implemented" : true,
|
"implemented" : true,
|
||||||
"isConstructor" : false,
|
"kind" : "function",
|
||||||
"modifiers" : [],
|
"modifiers" : [],
|
||||||
"name" : "f",
|
"name" : "f",
|
||||||
"nodeType" : "FunctionDefinition",
|
"nodeType" : "FunctionDefinition",
|
||||||
|
@ -93,6 +93,7 @@
|
|||||||
"documentation" : null,
|
"documentation" : null,
|
||||||
"implemented" : true,
|
"implemented" : true,
|
||||||
"isConstructor" : false,
|
"isConstructor" : false,
|
||||||
|
"kind" : "function",
|
||||||
"modifiers" :
|
"modifiers" :
|
||||||
[
|
[
|
||||||
null
|
null
|
||||||
|
Loading…
Reference in New Issue
Block a user