Base:
property
ReturnNotNullIfParameterNotNull
Microsoft.CodeAnalysis.CSharp.Symbols.MethodSymbol.ReturnNotNullIfParameterNotNull
3 overrides of ReturnNotNullIfParameterNotNull
Microsoft.CodeAnalysis.CSharp (3)
Lowering\SynthesizedMethodBaseSymbol.cs (1)
195
public sealed override ImmutableHashSet<string>
ReturnNotNullIfParameterNotNull
=> BaseMethod.ReturnNotNullIfParameterNotNull;
Symbols\Source\SourcePropertyAccessorSymbol.cs (1)
377
public sealed override ImmutableHashSet<string>
ReturnNotNullIfParameterNotNull
=> ImmutableHashSet<string>.Empty;
Symbols\Synthesized\SynthesizedSimpleProgramEntryPointSymbol.cs (1)
165
public override ImmutableHashSet<string>
ReturnNotNullIfParameterNotNull
=> ImmutableHashSet<string>.Empty;
1 reference to ReturnNotNullIfParameterNotNull
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\LambdaTests.cs (1)
4215
Assert.Equal(new[] { "obj" }, lambdas[1].
ReturnNotNullIfParameterNotNull
);