solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
contract C {
    function f(uint[2][2] calldata x) public returns (uint[2][2] memory r) {
        assembly { x := 0x24 }
        r = x;
    }
}
// ====
// compileViaYul: also
// ----
// f(uint256[2][2]): 0x0, 8, 7, 6, 5 -> 8, 7, 6, 5