2 implementations of GetPartsOfElementAccessExpression
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CSharpSyntaxFacts.cs (1)
565public void GetPartsOfElementAccessExpression(SyntaxNode node, out SyntaxNode expression, out SyntaxNode argumentList)
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
VisualBasicSyntaxFacts.vb (1)
556Public Sub GetPartsOfElementAccessExpression(node As SyntaxNode, ByRef expression As SyntaxNode, ByRef argumentList As SyntaxNode) Implements ISyntaxFacts.GetPartsOfElementAccessExpression
4 references to GetPartsOfElementAccessExpression
Microsoft.CodeAnalysis.CodeStyle (3)
ISyntaxFactsExtensions.cs (2)
415syntaxFacts.GetPartsOfElementAccessExpression(node, out var expression, out _); 421syntaxFacts.GetPartsOfElementAccessExpression(node, out _, out var argumentList);
UseCollectionInitializerAnalyzer.cs (1)
163_syntaxFacts.GetPartsOfElementAccessExpression(left, out var elementInstance, out var argumentList);
Microsoft.CodeAnalysis.VisualBasic.CodeStyle (1)
VisualBasicSyntaxFacts.vb (1)
556Public Sub GetPartsOfElementAccessExpression(node As SyntaxNode, ByRef expression As SyntaxNode, ByRef argumentList As SyntaxNode) Implements ISyntaxFacts.GetPartsOfElementAccessExpression