Crate ra_ap_mbe[][src]

Expand description

mbe (short for Macro By Example) crate contains code for handling macro_rules macros. It uses TokenTree (from tt package) as the interface, although it contains some code to bridge SyntaxNodes and TokenTrees as well!

Structs

For Macro 2.0

This struct contains AST for a single macro_rules definition. What might be very confusing is that AST has almost exactly the same shape as tt::TokenTree, but there’s a crucial difference: in macro rules, $ident and $()* have special meaning (see Var and Repeat data structures)

Maps tt::TokenId to the relative range of the original token.

Enums

Functions

Convert the syntax tree (what user has written) to a TokenTree (what macro will consume).

Split token tree with seperate expr: $($e:expr)SEP*

Convert a string to a TokenTree

Convert the syntax node to a TokenTree (what macro will consume).