solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
contract C {
    uint constant x = 2;
    function f() view public returns (uint) {
        return x;
    }
    function g() public returns (uint) {
        return x;
    }
}
// ----
// Warning 2018: (42-107): Function state mutability can be restricted to pure
// Warning 2018: (112-172): Function state mutability can be restricted to pure