1 implementation of IParameterSymbolInternal
Microsoft.CodeAnalysis.CSharp (1)
Symbols\ParameterSymbol.cs (1)
17
internal abstract partial class ParameterSymbol : Symbol,
IParameterSymbolInternal
7 references to IParameterSymbolInternal
Microsoft.CodeAnalysis (2)
Emit\EditAndContinue\DefinitionMap.cs (1)
468
foreach (
var
p in lambda.Parameters)
Symbols\IMethodSymbolInternal.cs (1)
35
ImmutableArray<
IParameterSymbolInternal
> Parameters { get; }
Microsoft.CodeAnalysis.CSharp (4)
Symbols\MethodSymbol.cs (2)
1236
ImmutableArray<
IParameterSymbolInternal
> IMethodSymbolInternal.Parameters => Parameters.Cast<ParameterSymbol,
IParameterSymbolInternal
>();
Symbols\ParameterSymbol.cs (2)
456
ITypeSymbolInternal
IParameterSymbolInternal
.Type => Type;
457
RefKind
IParameterSymbolInternal
.RefKind => RefKind;
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
LanguageInstructionDecoder.cs (1)
23
where TParameterSymbol : class,
IParameterSymbolInternal