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 like the def is interpreted as an empty list of matching method headers. My guess is changing sepBy to sepBy1 (or similar) in the parser is enough to fix it.
The text was updated successfully, but these errors were encountered:
Yeah sepBy1 fixes it. However, writing tests for failing programs is quite tricky atm and will probably be much easier in the future after the test scripts have been refactored. Should I submit a PR without tests, or shall I dig into how the failing tests in the typeSym folder work?
The following short program crashes the compiler
It seems like the
def
is interpreted as an empty list of matching method headers. My guess is changingsepBy
tosepBy1
(or similar) in the parser is enough to fix it.The text was updated successfully, but these errors were encountered: