Hello and thank you for this great library. I'm trying to parse a language with fat arrow funcdefs as in:
a() => 1
However, they are never begin used because funccall is a shorter version of this:
a()
I've verified they both work as removing funccall allows funcdef to work again. Is there any way to set precedence or otherwise allow funcdef to be used? Thanks for any advice or feedback.
Hello and thank you for this great library. I'm trying to parse a language with fat arrow funcdefs as in:
However, they are never begin used because funccall is a shorter version of this:
I've verified they both work as removing funccall allows funcdef to work again. Is there any way to set precedence or otherwise allow funcdef to be used? Thanks for any advice or feedback.
Here are the relevent parser definitions: