translatable_proc 1.0.0

Proc macro crate for the translatable library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Macro input parsing module.
//!
//! This module contains the sub-modules
//! to parse macro input for specific
//! macros, the parsed input is usually
//! fed to [`macro_generation`] as intrinsics.
//!
//! Each sub-module represents a different macro,
//! except for separated utils.
//!
//! [`macro_generation`]: crate::macro_generation

pub mod input_type;
pub mod translation;