ra_ap_parser 0.0.327

The Rust parser for rust-analyzer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn foo() {
    // reference operator
    let _ = &1;
    let _ = &mut &f();
    let _ = &raw;
    let _ = &raw.0;
    // raw reference operator
    let _ = &raw mut foo;
    let _ = &raw const foo;
    let _ = &raw foo;
}