4 references to IsSpan
Microsoft.CodeAnalysis.NetAnalyzers (4)
Microsoft.NetCore.Analyzers\Usage\DoNotCompareSpanToNull.cs (4)
63
if (rightOperand.HasNullConstantValue() && binaryOperation.LeftOperand.Type is not null &&
IsSpan
(binaryOperation.LeftOperand.Type)
64
|| leftOperand.HasNullConstantValue() && binaryOperation.RightOperand.Type is not null &&
IsSpan
(binaryOperation.RightOperand.Type))
69
if (rightOperand is IDefaultValueOperation && binaryOperation.LeftOperand.Type is not null &&
IsSpan
(binaryOperation.LeftOperand.Type)
70
|| leftOperand is IDefaultValueOperation && binaryOperation.RightOperand.Type is not null &&
IsSpan
(binaryOperation.RightOperand.Type))