3 writes to PropertyAbstractValues
Microsoft.CodeAnalysis.AnalyzerUtilities (3)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\PropertySetAnalysis\ConstructorMapper.cs (3)
49
this.
PropertyAbstractValues
= propertyAbstractValues;
59
this.
PropertyAbstractValues
= ImmutableArray<PropertySetAbstractValueKind>.Empty;
69
this.
PropertyAbstractValues
= ImmutableArray<PropertySetAbstractValueKind>.Empty;
8 references to PropertyAbstractValues
Microsoft.CodeAnalysis.AnalyzerUtilities (8)
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\PropertySetAnalysis\ConstructorMapper.cs (6)
92
if (!this.
PropertyAbstractValues
.IsEmpty)
94
if (this.
PropertyAbstractValues
.Length != propertyCount)
96
throw new ArgumentException($"ConstructorMapper PropertyAbstractValues has invalid length (expected {propertyCount}, actual length {this.
PropertyAbstractValues
.Length})");
104
HashUtilities.Combine(
PropertyAbstractValues
, ref hashCode);
120
&& this.
PropertyAbstractValues
== other.
PropertyAbstractValues
;
src\RoslynAnalyzers\Utilities\FlowAnalysis\FlowAnalysis\Analysis\PropertySetAnalysis\PropertySetAnalysis.PropertySetDataFlowOperationVisitor.cs (2)
154
if (!constructorMapper.
PropertyAbstractValues
.IsEmpty)
156
abstractValue = PropertySetAbstractValue.GetInstance(constructorMapper.
PropertyAbstractValues
);