2025-10-17 19:45:20 +02:00
|
|
|
mod custom_error;
|
|
|
|
|
|
|
|
|
|
pub mod user_error {
|
|
|
|
|
pub use crate::custom_error::*;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
#[allow(clippy::extra_unused_lifetimes)]
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
|
#[allow(clippy::just_underscores_and_digits)]
|
|
|
|
|
#[allow(clippy::uninlined_format_args)]
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
|
pub mod grammar {
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/src/grammar.rs"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
#[allow(clippy::extra_unused_lifetimes)]
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
|
#[allow(clippy::just_underscores_and_digits)]
|
|
|
|
|
#[allow(clippy::uninlined_format_args)]
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
|
pub mod assert {
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/src/assert.rs"));
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 21:12:43 +01:00
|
|
|
#[rustfmt::skip]
|
|
|
|
|
#[allow(clippy::extra_unused_lifetimes)]
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
|
#[allow(clippy::just_underscores_and_digits)]
|
|
|
|
|
#[allow(clippy::uninlined_format_args)]
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
|
pub mod positive_assert {
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/src/positive_assert.rs"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
#[allow(clippy::extra_unused_lifetimes)]
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
|
#[allow(clippy::just_underscores_and_digits)]
|
|
|
|
|
#[allow(clippy::uninlined_format_args)]
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
|
pub mod grouping {
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/src/grouping.rs"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
#[allow(clippy::extra_unused_lifetimes)]
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
|
#[allow(clippy::just_underscores_and_digits)]
|
|
|
|
|
#[allow(clippy::uninlined_format_args)]
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
|
pub mod positive_grouping {
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/src/positive_grouping.rs"));
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-17 19:45:20 +02:00
|
|
|
#[rustfmt::skip]
|
|
|
|
|
#[allow(clippy::extra_unused_lifetimes)]
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
|
#[allow(clippy::just_underscores_and_digits)]
|
|
|
|
|
#[allow(clippy::uninlined_format_args)]
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
|
pub mod instructions {
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/src/instructions.rs"));
|
|
|
|
|
}
|
2025-12-22 14:47:38 +01:00
|
|
|
|
|
|
|
|
#[rustfmt::skip]
|
|
|
|
|
#[allow(clippy::extra_unused_lifetimes)]
|
|
|
|
|
#[allow(clippy::needless_lifetimes)]
|
|
|
|
|
#[allow(clippy::let_unit_value)]
|
|
|
|
|
#[allow(clippy::just_underscores_and_digits)]
|
|
|
|
|
#[allow(clippy::uninlined_format_args)]
|
|
|
|
|
#[allow(clippy::type_complexity)]
|
|
|
|
|
pub mod boolean {
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/src/boolean.rs"));
|
|
|
|
|
}
|