2019-09-22 12:36:35 -05:00
|
|
|
//! This module implements declarative macros: old `macro_rules` and the newer
|
|
|
|
//! `macro`. Declarative macros are also known as "macro by example", and that's
|
|
|
|
//! why we call this module `mbe`. For external documentation, prefer the
|
|
|
|
//! official terminology: "declarative macros".
|
|
|
|
|
2019-09-22 10:28:32 -05:00
|
|
|
crate mod transcribe;
|
|
|
|
crate mod macro_check;
|
|
|
|
crate mod macro_parser;
|
|
|
|
crate mod macro_rules;
|
|
|
|
crate mod quoted;
|