mun_hir 0.4.0

Provides high-level intermediate representation of Mun code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
source: crates/mun_hir/src/ty/tests.rs
expression: "fn main() -> u8 {\n    let b = 5;\n    let c = 3;\n    let a = [1,b,4,c];\n    a[3]\n}"
---
16..81 '{     ...a[3] }': u8
26..27 'b': u8
30..31 '5': u8
41..42 'c': u8
45..46 '3': u8
56..57 'a': [u8]
60..69 '[1,b,4,c]': [u8]
61..62 '1': u8
63..64 'b': u8
65..66 '4': u8
67..68 'c': u8
75..76 'a': [u8]
75..79 'a[3]': u8
77..78 '3': i32