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
<anon>:2:16: 2:30 error: `$x:ident` is followed by a sequence repetition, which is not allowed for `ident` fragments
<anon>:2 ( $x:ident $(: $y:ident )* ) => ( $x $(: $y )* )
The RFC says that ident may be followed by any token, so why repetition of any tokens would be invalid?
The text was updated successfully, but these errors were encountered:
The follow sets are only for real tokens, not complex NTs. To extend this properly, the algorithm will need to compute the FIRST of the following token to ensure that it is a subset of the FOLLOW set for that token.
The RFC says that
ident
may be followed by any token, so why repetition of any tokens would be invalid?The text was updated successfully, but these errors were encountered: