Completely remove legacy combinator-based parser

This commit is contained in:
2025-06-08 18:54:14 -07:00
parent 6ea50ac3f0
commit 979eeccfe8
4 changed files with 8 additions and 776 deletions
+1 -1
View File
@@ -366,7 +366,7 @@ pub fn grammar(ts: TokenStream) -> TokenStream {
.map(|x| Ident::new(x, proc_macro2::Span::call_site()))
.collect();
let enum_tag = quote! {
#[derive(Copy, Clone, Debug)]
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Tag {
#(#tag_idents),*
}