I have a priority problem in my grammar, and I don't have any more idea to fix it.
I'm using Lark
Here is the thing (I have simplified the problem as much as I can):
from lark import Lark
parser = Lark(r"""
start: set | set_mul
set_mul: [nb] set
set: [nb] "foo"
nb: INT "x"
%import common.INT
%import common.WS
%ignore WS
""", start='start')
input = "3xfoo"
p = parser.parse(input)
print(p.pretty())
The output is :
start
set_mul
set
nb 3
But what I want is :
start
set_mul
nb 3
set
I tried to put priority in my rules, but it's not working.
Do you have any idea of what I would need to change to make it work ?
Thanks