9 references to SemicolonToken
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)
7260
if (attributeLists != this.AttributeLists || breakKeyword != this.BreakKeyword || name != this.Name || semicolonToken != this.
SemicolonToken
)
7271
public new BreakStatementSyntax WithAttributeLists(SyntaxList<AttributeListSyntax> attributeLists) => Update(attributeLists, this.BreakKeyword, this.Name, this.
SemicolonToken
);
7272
public BreakStatementSyntax WithBreakKeyword(SyntaxToken breakKeyword) => Update(this.AttributeLists, breakKeyword, this.Name, this.
SemicolonToken
);
7274
public BreakStatementSyntax WithName(IdentifierNameSyntax? name) => Update(this.AttributeLists, this.BreakKeyword, name, this.
SemicolonToken
);
Syntax\LookupPosition.cs (1)
380
return ((BreakStatementSyntax)statement).
SemicolonToken
;
Microsoft.CodeAnalysis.CSharp.Features (3)
ExtractMethod\CSharpMethodExtractor.CSharpCodeGenerator.cs (1)
447
return returnStatement.WithSemicolonToken(breakStatement.
SemicolonToken
);
Highlighting\KeywordHighlighters\LoopHighlighter.cs (1)
91
spans.Add(EmptySpan(breakStatement.
SemicolonToken
.Span.End));
Highlighting\KeywordHighlighters\SwitchStatementHighlighter.cs (1)
69
spans.Add(EmptySpan(breakStatement.
SemicolonToken
.Span.End));