solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
contract Small {
    uint public a;
    uint[] public b;
    function f1(uint x) public returns (uint) { a = x; b[uint8(msg.data[0])] = x; }
    fallback () external payable {}
}
// ----
// creation:
//   codeDepositCost: 108800
//   executionCost: 153
//   totalCost: 108953
// external:
//   fallback: 129
//   a(): 2407
//   b(uint256): infinite
//   f1(uint256): infinite