8 references to BreakKeyword
Microsoft.CodeAnalysis.CSharp (6)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1902=> node.Update(VisitList(node.AttributeLists), VisitToken(node.BreakKeyword), (IdentifierNameSyntax?)Visit(node.Name), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (4)
7260if (attributeLists != this.AttributeLists || breakKeyword != this.BreakKeyword || name != this.Name || semicolonToken != this.SemicolonToken) 7271public new BreakStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.BreakKeyword, this.Name, this.SemicolonToken); 7274public BreakStatementSyntax WithName(IdentifierNameSyntax? name) => Update(this.AttributeLists, this.BreakKeyword, name, this.SemicolonToken); 7275public BreakStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.AttributeLists, this.BreakKeyword, this.Name, semicolonToken);
Syntax\LookupPosition.cs (1)
318return ((BreakStatementSyntax)statement).BreakKeyword;
Microsoft.CodeAnalysis.CSharp.Features (2)
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
90spans.Add(breakStatement.BreakKeyword.Span);
Highlighting\KeywordHighlighters\SwitchStatementHighlighter.cs (1)
68spans.Add(breakStatement.BreakKeyword.Span);