Fixup path fragments upon MBE transcription

This commit is contained in:
Ryo Yoshida 2023-07-30 23:36:42 +09:00
parent 037844c8a0
commit fd7435d463
No known key found for this signature in database
GPG key ID: E25698A930586171
5 changed files with 89 additions and 5 deletions

View file

@ -122,7 +122,6 @@ impl_from!(Literal<Span>, Punct<Span>, Ident<Span> for Leaf);
#[derive(Clone, PartialEq, Eq, Hash)]
pub struct Subtree<Span> {
// FIXME, this should not be Option
pub delimiter: Delimiter<Span>,
pub token_trees: Vec<TokenTree<Span>>,
}