microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
compiler/qsc_ast/src/lib.rs
11lines · 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 ast; |
| 9 | pub mod mut_visit; |
| 10 | pub mod validate; |
| 11 | pub mod visit; |
| 12 | |