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
The `RE_TO_DOWNTO_AS_LABELS` rule previously used `\s*` between `(to|downto)` and `(as)`,
allowing zero spaces and accidentally matching identifiers like "toast".
Change the pattern to `\s+` so that an actual space is required, preventing spurious `as`
highlighting inside identifiers.
0 commit comments