diff options
Diffstat (limited to 'libbindgen/src/ir/mod.rs')
-rw-r--r-- | libbindgen/src/ir/mod.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libbindgen/src/ir/mod.rs b/libbindgen/src/ir/mod.rs new file mode 100644 index 00000000..3c658a4a --- /dev/null +++ b/libbindgen/src/ir/mod.rs @@ -0,0 +1,18 @@ +//! The ir module defines bindgen's intermediate representation. +//! +//! Parsing C/C++ generates the IR, while code generation outputs Rust code from +//! the IR. + +pub mod annotations; +pub mod comp; +pub mod context; +pub mod enum_ty; +pub mod function; +pub mod int; +pub mod item; +pub mod item_kind; +pub mod layout; +pub mod module; +pub mod ty; +pub mod type_collector; +pub mod var; |