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 has been archived by the owner on Jan 9, 2019. It is now read-only.
When defining a parser with the library
(nausicaa parser-tools lalr)
and the grammar below:the rules defining the unary
+
and unary-
operators do not handle correctly theprec:
qualifier. This results in the sequence:to be parsed as
(- (* 1 2))
rather than(* (- 1) 2))
.The text was updated successfully, but these errors were encountered: