macro_rules! define_keywords {
($(
$ident:ident $(= $string_keyword:expr)?
),*) => { ... };
}
Expand description
Expands to a list of kw_def!()
invocations for each keyword
and defines an ALL_KEYWORDS array of the defined constants.