1 implementation of IsElementAccessExpression
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
src\Workspaces\SharedUtilitiesAndExtensions\Compiler\CSharp\Services\SyntaxFacts\CSharpSyntaxFacts.cs (1)
682
public bool
IsElementAccessExpression
(SyntaxNode? node)
2 references to IsElementAccessExpression
Microsoft.CodeAnalysis.CodeStyle (1)
src\Analyzers\Core\Analyzers\UseCollectionInitializer\AbstractUseCollectionInitializerAnalyzer.cs (1)
231
if (!this.SyntaxFacts.
IsElementAccessExpression
(left))
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
src\Analyzers\Core\CodeFixes\UseNullPropagation\AbstractUseNullPropagationCodeFixProvider.cs (1)
285
Debug.Assert(syntaxFacts.
IsElementAccessExpression
(elementAccess));