solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
contract test {
    function fun(uint256 a) public returns (uint8 b) {
        if (a < 0) b = 0x67; else if (a == 0) b = 0x12; else b = 0x78;
    }
}
// ----
// Warning 2018: (20-147): Function state mutability can be restricted to pure