4 instantiations of WithElementSyntax
Microsoft.CodeAnalysis.CSharp (4)
_generated\1\Syntax.xml.Internal.Generated.cs (4)
6854
=> new
WithElementSyntax
(this.Kind, this.withKeyword, this.argumentList, diagnostics, GetAnnotations());
6857
=> new
WithElementSyntax
(this.Kind, this.withKeyword, this.argumentList, GetDiagnostics(), annotations);
30312
var result = new
WithElementSyntax
(SyntaxKind.WithElement, withKeyword, argumentList, this.context);
35734
var result = new
WithElementSyntax
(SyntaxKind.WithElement, withKeyword, argumentList);
12 references to WithElementSyntax
Microsoft.CodeAnalysis.CSharp (12)
_generated\1\Syntax.xml.Internal.Generated.cs (11)
6836
public
WithElementSyntax
Update(SyntaxToken withKeyword, ArgumentListSyntax argumentList)
6840
var
newNode = SyntaxFactory.WithElement(withKeyword, argumentList);
27488
public virtual TResult VisitWithElement(
WithElementSyntax
node) => this.DefaultVisit(node);
27742
public virtual void VisitWithElement(
WithElementSyntax
node) => this.DefaultVisit(node);
28140
public override CSharpSyntaxNode VisitWithElement(
WithElementSyntax
node)
30300
public
WithElementSyntax
WithElement(SyntaxToken withKeyword, ArgumentListSyntax argumentList)
30310
if (cached != null) return (
WithElementSyntax
)cached;
30312
var
result = new WithElementSyntax(SyntaxKind.WithElement, withKeyword, argumentList, this.context);
35722
public static
WithElementSyntax
WithElement(SyntaxToken withKeyword, ArgumentListSyntax argumentList)
35732
if (cached != null) return (
WithElementSyntax
)cached;
35734
var
result = new WithElementSyntax(SyntaxKind.WithElement, withKeyword, argumentList);
_generated\2\Syntax.xml.Syntax.Generated.cs (1)
4347
public SyntaxToken WithKeyword => new SyntaxToken(this, ((InternalSyntax.
WithElementSyntax
)this.Green).withKeyword, Position, 0);