7 references to BreakKeyword
Microsoft.CodeAnalysis.CSharp (5)
_generated\0\Syntax.xml.Main.Generated.cs (1)
1890=> node.Update(VisitList(node.AttributeLists), VisitToken(node.BreakKeyword), VisitToken(node.SemicolonToken));
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
7188if (attributeLists != this.AttributeLists || breakKeyword != this.BreakKeyword || semicolonToken != this.SemicolonToken) 7199public new BreakStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.BreakKeyword, this.SemicolonToken); 7201public BreakStatementSyntax WithSemicolonToken(SyntaxToken semicolonToken) => Update(this.AttributeLists, this.BreakKeyword, semicolonToken);
Syntax\LookupPosition.cs (1)
318return ((BreakStatementSyntax)statement).BreakKeyword;
Microsoft.CodeAnalysis.CSharp.Features (2)
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
86spans.Add(breakStatement.BreakKeyword.Span);
Highlighting\KeywordHighlighters\SwitchStatementHighlighter.cs (1)
64spans.Add(breakStatement.BreakKeyword.Span);