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