9 overrides of DeclaredScope
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder.ValueChecks.cs (1)
3139
internal override ScopedKind
DeclaredScope
=> throw ExceptionUtilities.Unreachable();
Symbols\FunctionPointers\FunctionPointerParameterSymbol.cs (1)
33
internal override ScopedKind
DeclaredScope
=> throw ExceptionUtilities.Unreachable();
Symbols\Metadata\PE\PEParameterSymbol.cs (1)
1068
internal sealed override ScopedKind
DeclaredScope
=> throw ExceptionUtilities.Unreachable();
Symbols\SignatureOnlyParameterSymbol.cs (1)
58
internal override ScopedKind
DeclaredScope
=> throw ExceptionUtilities.Unreachable();
Symbols\Source\SourceClonedParameterSymbol.cs (1)
66
internal sealed override ScopedKind
DeclaredScope
=> _originalParam.DeclaredScope;
Symbols\Source\SourceParameterSymbol.cs (1)
226
internal sealed override ScopedKind
DeclaredScope
=> _scope;
Symbols\Source\ThisParameterSymbol.cs (1)
181
internal override ScopedKind
DeclaredScope
=> throw ExceptionUtilities.Unreachable();
Symbols\Synthesized\SynthesizedParameterSymbol.cs (1)
227
internal sealed override ScopedKind
DeclaredScope
=> throw ExceptionUtilities.Unreachable();
Symbols\Wrapped\WrappedParameterSymbol.cs (1)
160
internal sealed override ScopedKind
DeclaredScope
=> _underlyingParameter.DeclaredScope;
2 references to DeclaredScope
Microsoft.CodeAnalysis.CSharp (2)
Symbols\Source\SourceNamedTypeSymbol_Extension.cs (1)
430
if (extensionParameter.
DeclaredScope
!= ScopedKind.None)
Symbols\Wrapped\WrappedParameterSymbol.cs (1)
160
internal sealed override ScopedKind DeclaredScope => _underlyingParameter.
DeclaredScope
;