2 instantiations of SymbolWithNegation
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.CodeQuality.Analyzers\Maintainability\AvoidLengthCalculationWhenSlicingToEnd.cs (2)
130lengthArgumentSymbols.Remove(new SymbolWithNegation(lengthProperty.Member, true)); 155set.Add(new SymbolWithNegation(operation.GetReferencedMemberOrLocalOrParameter(), isNegated));
3 references to SymbolWithNegation
Microsoft.CodeAnalysis.NetAnalyzers (3)
Microsoft.CodeQuality.Analyzers\Maintainability\AvoidLengthCalculationWhenSlicingToEnd.cs (3)
121var startArgumentSymbols = new HashSet<SymbolWithNegation>(); 125var lengthArgumentSymbols = new HashSet<SymbolWithNegation>(); 134void AddExpressionPartToSet(IOperation operation, bool isNegated, HashSet<SymbolWithNegation> set)