aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros/src/func.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-26 20:56:24 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-26 20:56:24 +0800
commit5714eba48ee9031d61858425583c219b881f2d13 (patch)
tree714a2f82d7652ab14433a9ea4c129c30f6d04597 /mingling_macros/src/func.rs
parent2cb8893711b73ccde946ca83e01dc315a9294c23 (diff)
feat(macros): split monolith into one-macro-per-file modules
Diffstat (limited to 'mingling_macros/src/func.rs')
-rw-r--r--mingling_macros/src/func.rs27
1 files changed, 27 insertions, 0 deletions
diff --git a/mingling_macros/src/func.rs b/mingling_macros/src/func.rs
index 33bb094..833e8ee 100644
--- a/mingling_macros/src/func.rs
+++ b/mingling_macros/src/func.rs
@@ -1,13 +1,40 @@
pub(crate) mod dispatcher;
#[cfg(feature = "extra_macros")]
+pub(crate) mod empty_result;
+#[cfg(feature = "extra_macros")]
pub(crate) mod entry;
pub(crate) mod gen_program;
#[cfg(feature = "extra_macros")]
pub(crate) mod group;
+#[cfg(all(feature = "structural_renderer", feature = "extra_macros"))]
+pub(crate) mod group_structural;
pub(crate) mod node;
pub(crate) mod pack;
#[cfg(feature = "extra_macros")]
pub(crate) mod pack_err;
+#[cfg(feature = "structural_renderer")]
+pub(crate) mod pack_err_structural;
+#[cfg(feature = "structural_renderer")]
+pub(crate) mod pack_structural;
+#[cfg(feature = "comp")]
+pub(crate) mod program_comp_gen;
+pub(crate) mod program_fallback_gen;
+pub(crate) mod program_final_gen;
+pub(crate) mod r_append;
+pub(crate) mod r_eprint;
+pub(crate) mod r_eprintln;
pub(crate) mod r_print;
+pub(crate) mod r_println;
+pub(crate) mod register_chain;
+pub(crate) mod register_dispatcher;
+pub(crate) mod register_help;
+pub(crate) mod register_renderer;
+pub(crate) mod register_type;
+#[cfg(feature = "extra_macros")]
+pub(crate) mod render_route;
+#[cfg(feature = "extra_macros")]
+pub(crate) mod route;
#[cfg(feature = "comp")]
pub(crate) mod suggest;
+#[cfg(feature = "comp")]
+pub(crate) mod suggest_enum;