Brian Silverman | 4e662aa | 2022-05-11 23:10:19 -0700 | [diff] [blame^] | 1 | // Copyright 2020 Google LLC |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 4 | // https://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 5 | // <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your |
| 6 | // option. This file may not be copied, modified, or distributed |
| 7 | // except according to those terms. |
| 8 | |
| 9 | pub(crate) mod abstract_types; |
| 10 | pub(crate) mod allocators; |
| 11 | pub(crate) mod casts; |
| 12 | pub(crate) mod constructor_deps; |
| 13 | pub(crate) mod ctypes; |
| 14 | pub(crate) mod deps; |
| 15 | mod depth_first; |
| 16 | mod doc_label; |
| 17 | pub(crate) mod fun; |
| 18 | pub(crate) mod gc; |
| 19 | mod name_check; |
| 20 | pub(crate) mod pod; // hey, that rhymes |
| 21 | pub(crate) mod remove_ignored; |
| 22 | mod replace_hopeless_typedef_targets; |
| 23 | pub(crate) mod tdef; |
| 24 | mod type_converter; |
| 25 | |
| 26 | pub(crate) use name_check::check_names; |
| 27 | pub(crate) use replace_hopeless_typedef_targets::replace_hopeless_typedef_targets; |
| 28 | pub(crate) use type_converter::PointerTreatment; |