ra_ap_parser 0.0.329

The Rust parser for rust-analyzer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn foo() {
    || ();
    || -> i32 { 92 };
    |x| x;
    move |x: i32,| x;
    async || {};
    move || {};
    async move || {};
    static || {};
    static move || {};
    static async || {};
    static async move || {};
    for<'a> || {};
    for<'a> move || {};
}