It's a mild pain that a lexer rule like: ``` "P1" return 'P1' ``` conflicts with a grammar rule like: ``` P1: 'P1' ; ``` The `symbols_` map would show the conflict: <pre> symbols_: {"error":2,…,"<b>P1":4</b>,"EOF":5,<b>"P1":7</b>,…,"$accept":0,"$end":1}, </pre> but in fact it fails during compilation so it doesn't get as far as generating such a conflicting map.