A declarative (regex-like) parser generator based on syn
and quote
.
```
raw_receptacle = var ( '|' var )* '?'?
var = '@'? var_name
dyn syn::parse::Parse
Option<dyn syn::parse::Parse>
Vec<dyn syn::parse::Parse>
var_name =
receptacle = '#' '<' raw_receptacle '>'
syn::parse::Parse
trait forfordata =
seqconstruct = '#' '<' 'SEQ' ':' rawreceptacle '>'
construct = forconstruct | seqconstruct
template = token* (( receptacle | construct )+ token) ```
First, define a struct into which you will put parsed data.
rust
pub struct ThingDef {
// optional `pub` token
pub pub_token: Option<syn::Token![pub]>,
// Name of our thing
pub thing_name: syn::Ident,
}
Now let's implement syn::parse::Parse
for it with help of nys
library.
rust
nys::quote_template! {
#<FOR: ThingDef>
#<pub_token?> thing #<thing_name>;
}
Now you can use the ThingDef
everywhere where a syn::pares::Parse
-implementing struct
is needed.
Even in other nys::quote_template!
s.
Additionally ThingDef
now has a nys_parse_stream(s: ::proc_macro::TokenStream) -> ThingDef
function.
Note that it WILL panic on error.