1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
//! Common traits and types related to parsing our IR from Clang cursors.
use crate clang;
use crate;
/// Not so much an error in the traditional sense, but a control flow message
/// when walking over Clang's AST with a cursor.
/// The result of parsing a Clang AST node.
/// An intermediate representation "sub-item" (i.e. one of the types contained
/// inside an `ItemKind` variant) that can be parsed from a Clang cursor.