1 instantiation of ConstantValueIndex
Microsoft.CodeAnalysis.NetAnalyzers (1)
src\sdk\src\Microsoft.CodeAnalysis.NetAnalyzers\src\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\AbstractIndex.cs (1)
12
public static AbstractIndex Create(int index) => new
ConstantValueIndex
(index);
4 references to ConstantValueIndex
Microsoft.CodeAnalysis.NetAnalyzers (4)
src\9382845807600969\AbstractIndex.ConstantValueIndex.cs (3)
22
hashCode.Add(nameof(
ConstantValueIndex
).GetHashCode());
27
var
other = (
ConstantValueIndex
)obj;
src\sdk\src\Microsoft.CodeAnalysis.NetAnalyzers\src\Utilities\FlowAnalysis\FlowAnalysis\Framework\DataFlow\AbstractIndex.cs (1)
16
internal bool IsConstant() => this is
ConstantValueIndex
;