12 overrides of GetParameterCountFromSyntax
Microsoft.CodeAnalysis.CSharp (12)
Symbols\Source\SourceOrdinaryMethodSymbol.cs (1)
367protected override int GetParameterCountFromSyntax() => GetSyntax().ParameterList.ParameterCount;
Symbols\Source\SourceUserDefinedConversionSymbol.cs (1)
104protected override int GetParameterCountFromSyntax()
Symbols\Source\SourceUserDefinedOperatorSymbol.cs (1)
104protected override int GetParameterCountFromSyntax()
Symbols\Synthesized\Records\SynthesizedRecordBaseEquals.cs (1)
45protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordClone.cs (1)
109protected override int GetParameterCountFromSyntax() => 0;
Symbols\Synthesized\Records\SynthesizedRecordDeconstruct.cs (1)
57protected override int GetParameterCountFromSyntax() => _ctor.ParameterCount;
Symbols\Synthesized\Records\SynthesizedRecordEqualityOperatorBase.cs (1)
79protected override int GetParameterCountFromSyntax() => 2;
Symbols\Synthesized\Records\SynthesizedRecordEquals.cs (1)
50protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordGetHashCode.cs (1)
40protected override int GetParameterCountFromSyntax() => 0;
Symbols\Synthesized\Records\SynthesizedRecordObjEquals.cs (1)
41protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordPrintMembers.cs (1)
102protected override int GetParameterCountFromSyntax() => 1;
Symbols\Synthesized\Records\SynthesizedRecordToString.cs (1)
50protected override int GetParameterCountFromSyntax() => 0;
2 references to GetParameterCountFromSyntax
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceOrdinaryMethodOrUserDefinedOperatorSymbol.cs (2)
173Debug.Assert(result == GetParameterCountFromSyntax()); 177return GetParameterCountFromSyntax();