solang-parser 0.2.1

Solang Solidity Parser
Documentation
1
2
3
4
5
6
7
contract C {
    // Check that visibility is also enforced for the fallback function.
    fallback() {}
}
// ----
// SyntaxError 4937: (90-103): No visibility specified. Did you intend to add "external"?
// TypeError 1159: (90-103): Fallback function must be defined as "external".