solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
contract C {
    /**
     * @param 5value a value parameter
     * @param _ a value parameter
     */
    function f(uint256 _5value, uint256 _value, uint256 value) internal {
    }
}
// ----
// DocstringParsingError 3881: (17-101): Documented parameter "" not found in the parameter list of the function.
// DocstringParsingError 3881: (17-101): Documented parameter "_" not found in the parameter list of the function.