1 implementation of NewKeyword
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxKinds.cs (1)
72
public int
NewKeyword
=> (int)SyntaxKind.NewKeyword;
2 references to NewKeyword
Microsoft.CodeAnalysis.Workspaces (2)
FindSymbols\FindReferences\FindReferenceCache.cs (2)
249
this.SyntaxFacts.GetText(this.SyntaxFacts.SyntaxKinds.
NewKeyword
),
250
static (_, token, syntaxKinds) => token.RawKind == syntaxKinds.
NewKeyword
,