solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
contract Test {
  // This checks a scoping error,
  // the variable "a" was not visible
  // at the assignment.
  function test(address _ext) external {
    try Test(_ext).test(_ext) {} catch {}
    uint a = 1;
    a = 3;
  }
}
// ----