4 instantiations of WhileStatementSyntax
Microsoft.CodeAnalysis.CSharp (4)
_generated\1\Syntax.xml.Internal.Generated.cs (4)
12261
=> new
WhileStatementSyntax
(this.Kind, this.attributeLists, this.whileKeyword, this.openParenToken, this.condition, this.closeParenToken, this.statement, diagnostics, GetAnnotations());
12264
=> new
WhileStatementSyntax
(this.Kind, this.attributeLists, this.whileKeyword, this.openParenToken, this.condition, this.closeParenToken, this.statement, GetDiagnostics(), annotations);
31440
return new
WhileStatementSyntax
(SyntaxKind.WhileStatement, attributeLists.Node, whileKeyword, openParenToken, condition, closeParenToken, statement, this.context);
36862
return new
WhileStatementSyntax
(SyntaxKind.WhileStatement, attributeLists.Node, whileKeyword, openParenToken, condition, closeParenToken, statement);
11 references to WhileStatementSyntax
Microsoft.CodeAnalysis.CSharp (11)
_generated\1\Syntax.xml.Internal.Generated.cs (7)
12243
public
WhileStatementSyntax
Update(CoreSyntax.SyntaxList<AttributeListSyntax> attributeLists, SyntaxToken whileKeyword, SyntaxToken openParenToken, ExpressionSyntax condition, SyntaxToken closeParenToken, StatementSyntax statement)
12247
var
newNode = SyntaxFactory.WhileStatement(attributeLists, whileKeyword, openParenToken, condition, closeParenToken, statement);
27544
public virtual TResult VisitWhileStatement(
WhileStatementSyntax
node) => this.DefaultVisit(node);
27798
public virtual void VisitWhileStatement(
WhileStatementSyntax
node) => this.DefaultVisit(node);
28308
public override CSharpSyntaxNode VisitWhileStatement(
WhileStatementSyntax
node)
31427
public
WhileStatementSyntax
WhileStatement(CoreSyntax.SyntaxList<AttributeListSyntax> attributeLists, SyntaxToken whileKeyword, SyntaxToken openParenToken, ExpressionSyntax condition, SyntaxToken closeParenToken, StatementSyntax statement)
36849
public static
WhileStatementSyntax
WhileStatement(CoreSyntax.SyntaxList<AttributeListSyntax> attributeLists, SyntaxToken whileKeyword, SyntaxToken openParenToken, ExpressionSyntax condition, SyntaxToken closeParenToken, StatementSyntax statement)
_generated\2\Syntax.xml.Syntax.Generated.cs (3)
7567
public SyntaxToken WhileKeyword => new SyntaxToken(this, ((InternalSyntax.
WhileStatementSyntax
)this.Green).whileKeyword, GetChildPosition(1), GetChildIndex(1));
7569
public SyntaxToken OpenParenToken => new SyntaxToken(this, ((InternalSyntax.
WhileStatementSyntax
)this.Green).openParenToken, GetChildPosition(2), GetChildIndex(2));
7573
public SyntaxToken CloseParenToken => new SyntaxToken(this, ((InternalSyntax.
WhileStatementSyntax
)this.Green).closeParenToken, GetChildPosition(4), GetChildIndex(4));
Parser\LanguageParser.cs (1)
10518
private
WhileStatementSyntax
ParseWhileStatement(SyntaxList<AttributeListSyntax> attributes)