solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
contract A { modifier mod(uint a) { _; } }
contract B is A { uint public mod; }
// ----
// DeclarationError 9097: (61-76): Identifier already declared.
// TypeError 1456: (61-76): Override changes modifier to public state variable.