9 references to EndRegionKeyword
Microsoft.CodeAnalysis.CSharp (6)
Syntax.xml.Main.Generated.cs (1)
2200
=> node.Update(VisitToken(node.HashToken), VisitToken(node.
EndRegionKeyword
), VisitToken(node.EndOfDirectiveToken), node.IsActive);
Syntax.xml.Syntax.Generated.cs (4)
15878
if (hashToken != this.HashToken || endRegionKeyword != this.
EndRegionKeyword
|| endOfDirectiveToken != this.EndOfDirectiveToken)
15889
public new EndRegionDirectiveTriviaSyntax WithHashToken(SyntaxToken hashToken) => Update(hashToken, this.
EndRegionKeyword
, this.EndOfDirectiveToken, this.IsActive);
15892
public new EndRegionDirectiveTriviaSyntax WithEndOfDirectiveToken(SyntaxToken endOfDirectiveToken) => Update(this.HashToken, this.
EndRegionKeyword
, endOfDirectiveToken, this.IsActive);
15893
public EndRegionDirectiveTriviaSyntax WithIsActive(bool isActive) => Update(this.HashToken, this.
EndRegionKeyword
, this.EndOfDirectiveToken, isActive);
Syntax\DirectiveTriviaSyntax.cs (1)
34
return ((EndRegionDirectiveTriviaSyntax)this).
EndRegionKeyword
;
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (2)
Generated\Syntax.Test.xml.Generated.cs (2)
14060
Assert.Equal(SyntaxKind.EndRegionKeyword, node.
EndRegionKeyword
.Kind());
14063
var newNode = node.WithHashToken(node.HashToken).WithEndRegionKeyword(node.
EndRegionKeyword
).WithEndOfDirectiveToken(node.EndOfDirectiveToken).WithIsActive(node.IsActive);
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
Classification\Worker_Preprocesser.cs (1)
208
AddClassification(node.
EndRegionKeyword
, ClassificationTypeNames.PreprocessorKeyword);