Base:
property
DeclaredScope
Microsoft.CodeAnalysis.CSharp.Symbols.ParameterSymbol.DeclaredScope
11 references to DeclaredScope
Microsoft.CodeAnalysis.CSharp (11)
Symbols\Source\ParameterHelpers.cs (1)
321Debug.Assert(parameter is SourceComplexParameterSymbolBase || parameter is not SourceParameterSymbol s || s.DeclaredScope == ScopedKind.None); // Only SourceComplexParameterSymbolBase validates 'scope'.
Symbols\Source\SourceClonedParameterSymbol.cs (1)
66internal sealed override ScopedKind DeclaredScope => _originalParam.DeclaredScope;
Symbols\Source\SourceComplexParameterSymbol.cs (2)
870else if (DeclaredScope != ScopedKind.None) 1554if (DeclaredScope == ScopedKind.ScopedValue && !Type.IsErrorOrRefLikeOrAllowsRefLikeType())
Symbols\Source\SourceConstructorSymbol.cs (2)
321if (definitionParameter.DeclaredScope != implementationParameter.DeclaredScope)
Symbols\Source\SourceParameterSymbol.cs (3)
142this.DeclaredScope); 160this.DeclaredScope); 237var declaredScope = this.DeclaredScope;
Symbols\Source\SourcePropertySymbol.cs (2)
806if (definitionParameter.DeclaredScope != implementationParameter.DeclaredScope)