lwb_parser/parser/syntax_file/ast/mod.rs
1#![allow(unused)]
2#![allow(non_snake_case)]
3#![allow(non_camel_case_types)]
4#![allow(clippy::all)]
5// |==========================================================|
6// | WARNING: THIS FILE IS AUTOMATICALLY GENERATED. |
7// | CHANGES TO IT WILL BE DELETED WHEN REGENERATED. |
8// | IN GENERAL, THIS FILE SHOULD NOT BE MODIFIED IN ANY WAY. |
9// |==========================================================|
10mod ast;
11pub use ast::*;
12mod from_pairs;
13pub use from_pairs::*;
14mod ast_impls;
15pub use ast_impls::*;
16mod parser;
17pub use parser::*;
18mod prelude {
19 pub use super::*;
20 pub use crate::codegen_prelude::*;
21}