You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that the lexer generator doesn't do a great job in reducing/minimizing the generated tables and for any non trivial grammar the lexer tables are big like for sql the final parser is around 800KB without managing case insensitive tokens if we make it case insensitive by adding rules like <CREATE: <['C','c']['R','r']['E','e']['A','a']['T','t']['E','e']> > then it becomes even bigger fast.
The text was updated successfully, but these errors were encountered:
It seems that the lexer generator doesn't do a great job in reducing/minimizing the generated tables and for any non trivial grammar the lexer tables are big like for sql the final parser is around 800KB without managing case insensitive tokens if we make it case insensitive by adding rules like
<CREATE: <['C','c']['R','r']['E','e']['A','a']['T','t']['E','e']> >
then it becomes even bigger fast.The text was updated successfully, but these errors were encountered: