1
Fork 0

Collect tokens when handling :literal matcher

An `NtLiteral` just wraps an `Expr`, so we don't need to add a new `tokens`
field to an AST struct.
This commit is contained in:
Aaron Hill 2020-08-21 18:28:47 -04:00
parent 1823dea7df
commit d5a04a9927
No known key found for this signature in database
GPG key ID: B4087E510E98B164
2 changed files with 10 additions and 2 deletions

View file

@ -278,7 +278,7 @@ pub fn nt_to_tokenstream(nt: &Nonterminal, sess: &ParseSess, span: Span) -> Toke
Some(tokenstream::TokenTree::token(token::Lifetime(ident.name), ident.span).into())
}
Nonterminal::NtTT(ref tt) => Some(tt.clone().into()),
Nonterminal::NtExpr(ref expr) => {
Nonterminal::NtExpr(ref expr) | Nonterminal::NtLiteral(ref expr) => {
if expr.tokens.is_none() {
debug!("missing tokens for expr {:?}", expr);
}