6 references to RefKeyword
Microsoft.CodeAnalysis.CSharp (3)
Syntax.xml.Main.Generated.cs (1)
2047=> node.Update(VisitToken(node.RefKeyword), VisitToken(node.StructKeyword));
Syntax.xml.Syntax.Generated.cs (2)
11984if (refKeyword != this.RefKeyword || structKeyword != this.StructKeyword) 11995public RefStructConstraintSyntax WithStructKeyword(SyntaxToken structKeyword) => Update(this.RefKeyword, structKeyword);
Microsoft.CodeAnalysis.CSharp.Features (1)
Completion\KeywordRecommenders\StructKeywordRecommender.cs (1)
58token.Parent is RefStructConstraintSyntax refStructConstraint && refStructConstraint.RefKeyword == token &&
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
13376Assert.Equal(SyntaxKind.RefKeyword, node.RefKeyword.Kind()); 13378var newNode = node.WithRefKeyword(node.RefKeyword).WithStructKeyword(node.StructKeyword);