Docs.rs
solang-parser-0.2.1
Platform
i686-pc-windows-msvc
i686-unknown-linux-gnu
x86_64-apple-darwin
x86_64-pc-windows-msvc
x86_64-unknown-linux-gnu
Feature flags
docs.rs
About docs.rs
Badges
Builds
Metadata
Shorthand URLs
Download
Rustdoc JSON
Build queue
Privacy policy
Rust
Rust website
The Book
Standard Library API Reference
Rust by Example
The Cargo Guide
Clippy Documentation
solang-parser 0.2.1
Solang Solidity Parser
Crate
Source
Builds
Feature flags
Documentation
Hide files
..
almost_call_options.sol
catch_error.sol
catch_error_named.sol
catch_low_level.sol
creation.sol
data_location_error_message.sol
double_panic.sol
double_panic_correct.sol
empty_catch.sol
empty_returns.sol
error_and_panic.sol
error_with_wrong_type.sol
invalid_error_name.sol
invalid_returns.sol
library_call.sol
low_level_pre-byzantium.sol
low_level_with_wrong_type.sol
no_catch.sol
no_external_call.sol
no_returns.sol
no_special.sol
returns.sol
returns_memory.sol
returns_memory_anonymous.sol
returns_mismatch.sol
scoping.sol
simple_catch.sol
structured_pre_byzantium.sol
two_catch_clauses.sol
two_error_catch_clauses.sol
two_low_level_catch_clauses.sol
wrong_panic.sol
wrong_panic_2.sol
1
2
3
4
5
6
7
8
9
10
contract C { function f() public { try this.f() { } catch { } } } // ----