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
The parser does not accept an action of the form Skip[[a <- c]] (only (Skip)[[a <- c]]), and for processes when there is a parameter P(1)[[a <- c]] (only (P(1))[[a <- c]]).
I suspect that the problem is the precedence between the renaming and for processes the production: identifier, [ ‘(’, [ expression, { ‘,’, expression } ], ‘)’ ]
I'm already aware of the problem; it is a precedence issue (sort of), but has nothing to do with instantiated actions (the grammar in the wiki is a reflection of the parser, not a literal input to the parser; there's no way the wiki grammar could generate a parser directly).
The parser does not accept an action of the form
Skip[[a <- c]]
(only(Skip)[[a <- c]]
), and for processes when there is a parameterP(1)[[a <- c]]
(only(P(1))[[a <- c]]
).I suspect that the problem is the precedence between the renaming and for processes the production:
identifier, [ ‘(’, [ expression, { ‘,’, expression } ], ‘)’ ]
and for actions the productions:
The text was updated successfully, but these errors were encountered: