Martin

Results 1 issues of Martin

It seems that antlr-kotlin does not properly handle precedence in left-recursive rules. Consider for instance the expression rule in the MiniCalc example: ``` expression : left=expression operator=(DIVISION|ASTERISK) right=expression # binaryOperation...