microsoft/qdk
Publicmirrored from https://github.com/microsoft/qdkAvailable
compiler/qsc_fir/src/lib.rs
13lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | #![warn(clippy::mod_module_files, clippy::pedantic, clippy::unwrap_used)] |
| 5 | #![allow(clippy::missing_errors_doc, clippy::missing_panics_doc)] |
| 6 | |
| 7 | pub mod assigner; |
| 8 | pub mod fir; |
| 9 | pub mod global; |
| 10 | pub mod mut_visit; |
| 11 | pub mod ty; |
| 12 | pub mod validate; |
| 13 | pub mod visit; |
| 14 | |