solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
contract test {
    function run(uint x1, uint x2, uint x3) public returns(uint y) {
        uint8 a = 0x1; uint8 b = 0x10; uint16 c = 0x100;
        y = a + b + c + x1 + x2 + x3;
        y += b + x2;
    }
}
// ====
// compileToEwasm: also
// compileViaYul: also
// ----
// run(uint256,uint256,uint256): 0x1000, 0x10000, 0x100000 -> 0x121121