dotnet/roslyn
`IsPreprocessorKeyword` documentation comment doesn't match implementation
开放
#54,604 创建于 2021年7月4日
Area-CompilersBughelp wanted
仓库指标
- 星标
- (20,414 个星标)
- PR 合并指标
- (平均合并 6天 17小时) (30 天内合并 256 个 PR)
描述
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).