solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
==== Source: SourceName ====
contract A {
	uint256 x;
	function f() public pure { x = 42; }
}
// ----
// TypeError 8961: (SourceName:53-54): Function cannot be declared as pure because this expression (potentially) modifies the state.