dotnet/roslyn
`IsPreprocessorKeyword` documentation comment doesn't match implementation
Ouverte
#54 604 ouverte le 4 juil. 2021
Area-CompilersBughelp wanted
Métriques du dépôt
- Stars
- (20 414 étoiles)
- Métriques de merge PR
- (Merge moyen 6j 17h) (256 PRs mergées en 30 j)
Description
The documentation says: "The set of identifiers that have special meaning directly after the # token".
However, the implementation delegates to the following:
which returns true for things that, as far as I know, doesn't come "directly after" the # (for example TrueKeyword).