You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AzureMarker
changed the title
Unable to distinguish between macros and selected symbols
Unable to distinguish between macro calls and selected symbols
Nov 20, 2020
Originally found here: #17 (comment)
Given this:
The alternative in
F
has 2 symbols:<a: X>
andY<Y>
.After diving into LALRPOP's code, it looks like their lexer emits either a
MacroId
or a normalId
depending on if there is an<
immediately following an identifier (with no space in-between):https://github.com/lalrpop/lalrpop/blob/cba3a7463c014b8444623848219532628054e9a1/lalrpop/src/tok/mod.rs#L647
The text was updated successfully, but these errors were encountered: