2 overrides of IsNullSuppressed
Microsoft.CodeAnalysis.CSharp.NetAnalyzers (1)
Microsoft.CodeQuality.Analyzers\QualityGuidelines\CSharpDoNotInitializeUnnecessarilyAnalyzer.cs (1)
13protected override bool IsNullSuppressed(IOperation op)
Microsoft.CodeAnalysis.VisualBasic.NetAnalyzers (1)
Microsoft.CodeQuality.Analyzers\QualityGuidelines\BasicDoNotInitializeUnnecessarilyAnalyzer.vb (1)
11Protected Overrides Function IsNullSuppressed(op As IOperation) As Boolean
2 references to IsNullSuppressed
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.CodeQuality.Analyzers\QualityGuidelines\DoNotInitializeUnnecessarily.cs (2)
111return !IsNullSuppressed(value); 123return literal.ConstantValue.Value is null && !IsNullSuppressed(literal);