solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
==== Source: A ====
contract A {
	function g(uint256 x) public view returns(uint256) { return x; }
}
==== Source: B ====
contract B is A {
	function f(uint256 x) public view returns(uint256) { return x; }
}
// ----
// DeclarationError 7920: (B:14-15): Identifier not found or not unique.