solang-parser 0.2.1

Solang Solidity Parser
Documentation
contract C {
    function g(bool b) public pure returns (uint x) {
        require(b);
        return 13;
    }
    function f(bool flag) public view returns (uint x) {
        try this.g(flag) returns (uint a) {
            x = a;
        } catch {
            x = 9;
        }
    }
}
// ====
// EVMVersion: >=byzantium
// compileViaYul: also
// ----
// f(bool): true -> 13
// f(bool): false -> 9