1 write to BaseMethod
Microsoft.CodeAnalysis.CSharp (1)
Lowering\SynthesizedMethodBaseSymbol.cs (1)
57
this.
BaseMethod
= baseMethod;
16 references to BaseMethod
Microsoft.CodeAnalysis.CSharp (16)
Compiler\MethodBodySynthesizer.Lowered.cs (1)
324
MethodSymbol methodBeingWrapped = this.
BaseMethod
;
Lowering\ClosureConversion\SynthesizedClosureMethod.cs (1)
210
protected override ImmutableArray<ParameterSymbol> BaseMethodParameters => this.
BaseMethod
.Parameters;
Lowering\SynthesizedMethodBaseSymbol.cs (14)
111
get { return this.
BaseMethod
.Parameters; }
154
?
BaseMethod
.GetAttributes()
161
return InheritsBaseMethodAttributes ?
BaseMethod
.GetReturnTypeAttributes() : ImmutableArray<CSharpAttributeData>.Empty;
165
public sealed override DllImportData? GetDllImportData() => InheritsBaseMethodAttributes ?
BaseMethod
.GetDllImportData() : null;
167
internal sealed override MethodImplAttributes ImplementationAttributes => InheritsBaseMethodAttributes ?
BaseMethod
.ImplementationAttributes : default;
169
internal sealed override MarshalPseudoCustomAttributeData? ReturnValueMarshallingInformation => InheritsBaseMethodAttributes ?
BaseMethod
.ReturnValueMarshallingInformation : null;
171
internal sealed override bool HasSpecialName => InheritsBaseMethodAttributes &&
BaseMethod
.HasSpecialName;
176
public sealed override bool AreLocalsZeroed => !(
BaseMethod
is SourceMethodSymbol sourceMethod) || sourceMethod.AreLocalsZeroed;
178
internal sealed override bool RequiresSecurityObject => InheritsBaseMethodAttributes &&
BaseMethod
.RequiresSecurityObject;
180
internal sealed override bool HasDeclarativeSecurity => InheritsBaseMethodAttributes &&
BaseMethod
.HasDeclarativeSecurity;
183
?
BaseMethod
.GetSecurityInformation()
190
get { return this.TypeMap.SubstituteType(this.
BaseMethod
.OriginalDefinition.ReturnTypeWithAnnotations); }
193
public sealed override FlowAnalysisAnnotations ReturnTypeFlowAnalysisAnnotations =>
BaseMethod
.ReturnTypeFlowAnalysisAnnotations;
195
public sealed override ImmutableHashSet<string> ReturnNotNullIfParameterNotNull =>
BaseMethod
.ReturnNotNullIfParameterNotNull;