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