solang-parser 0.2.1

Solang Solidity Parser
Documentation
contract C {
    function f(uint256 a) public returns (uint256 b) {
        assembly {
            switch a
                case 1 {
                    b := 8
                }
                case 2 {
                    b := 9
                }
                default {
                    b := 2
                }
        }
    }
}

// ====
// compileToEwasm: also
// compileViaYul: also
// ----
// f(uint256): 0 -> 2
// f(uint256): 1 -> 8
// f(uint256): 2 -> 9
// f(uint256): 3 -> 2