ra_ap_parser 0.0.326

The Rust parser for rust-analyzer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn foo() {
    let _ = true;
    let _ = false;
    let _ = 1;
    let _ = 2.0;
    let _ = b'a';
    let _ = 'b';
    let _ = "c";
    let _ = r"d";
    let _ = b"e";
    let _ = br"f";
    let _ = c"g";
    let _ = cr"h";
}