3 references to IsWriteableFieldOrProperty
Microsoft.CodeAnalysis.CSharp.Features (1)
src\Analyzers\CSharp\Analyzers\UseIndexOrRangeOperator\CSharpUseRangeOperatorDiagnosticAnalyzer.cs (1)
339
var indexerIsReadWrite = indexer.
IsWriteableFieldOrProperty
();
Microsoft.CodeAnalysis.Features (2)
Completion\Providers\AbstractObjectInitializerCompletionProvider.cs (2)
99
if (fieldOrProperty.
IsWriteableFieldOrProperty
() ||
111
Debug.Assert(!fieldOrProperty.
IsWriteableFieldOrProperty
(), "Assertion failed - expected writable field/property check before calling this method.");