mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
1e63615206
Update tests. Additional tests Revert changes to the Natspec
60 lines
1.1 KiB
Plaintext
60 lines
1.1 KiB
Plaintext
|
|
======= events_in_abi/input.sol:C =======
|
|
Contract JSON ABI
|
|
[
|
|
{
|
|
"anonymous": false,
|
|
"inputs":
|
|
[
|
|
{
|
|
"indexed": false,
|
|
"internalType": "uint256",
|
|
"name": "b",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"name": "e1",
|
|
"type": "event"
|
|
},
|
|
{
|
|
"anonymous": false,
|
|
"inputs":
|
|
[
|
|
{
|
|
"indexed": true,
|
|
"internalType": "uint256",
|
|
"name": "a",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"name": "e1",
|
|
"type": "event"
|
|
},
|
|
{
|
|
"inputs": [],
|
|
"name": "g",
|
|
"outputs": [],
|
|
"stateMutability": "nonpayable",
|
|
"type": "function"
|
|
}
|
|
]
|
|
|
|
======= events_in_abi/input.sol:L =======
|
|
Contract JSON ABI
|
|
[
|
|
{
|
|
"anonymous": false,
|
|
"inputs":
|
|
[
|
|
{
|
|
"indexed": false,
|
|
"internalType": "uint256",
|
|
"name": "b",
|
|
"type": "uint256"
|
|
}
|
|
],
|
|
"name": "e1",
|
|
"type": "event"
|
|
}
|
|
]
|