I'm trying to write a formatter for a custom scripting language and left recrusion is really getting on my nerves. I'm using python's parsy library and I can't really solve how to parse the following example without causing the left recursion.

cells[col][row].clear(true);

#parsing #python #parsy #parser