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
{{ message }}
This repository was archived by the owner on Apr 19, 2023. It is now read-only.
The current parser using nom is not very developer-friendly or user-friendly. We may want to write a parser that is easier to maintain and that can produce better error messages. Using a parser combinator library that is not macro-based can help with the former. Also, we may use shunting-yard algorithm to allow custom operators (similar to Prolog/Haskell).
The current parser using
nomis not very developer-friendly or user-friendly. We may want to write a parser that is easier to maintain and that can produce better error messages. Using a parser combinator library that is not macro-based can help with the former. Also, we may use shunting-yard algorithm to allow custom operators (similar to Prolog/Haskell).