6 overrides of Scope
Microsoft.CodeAnalysis.CSharp (6)
CodeGen\Optimizer.cs (1)
2433
internal override ScopedKind
Scope
=> ScopedKind.None;
FlowAnalysis\NullableWalker.PlaceholderLocal.cs (1)
73
internal override ScopedKind
Scope
=> ScopedKind.None;
Symbols\Source\SourceLocalSymbol.cs (1)
89
internal sealed override ScopedKind
Scope
=> _scope;
Symbols\Synthesized\SynthesizedLocal.cs (1)
188
internal sealed override ScopedKind
Scope
=> ScopedKind.None;
Symbols\Synthesized\TypeSubstitutedLocalSymbol.cs (1)
114
internal override ScopedKind
Scope
=> throw new System.NotImplementedException();
Symbols\UpdatedContainingSymbolLocal.cs (1)
92
internal override ScopedKind
Scope
=> _underlyingLocal.Scope;
2 references to Scope
Microsoft.CodeAnalysis.CSharp (2)
Binder\RefSafetyAnalysis.cs (1)
446
var scopedModifier = _useUpdatedEscapeRules ? local.
Scope
: ScopedKind.None;
Symbols\PublicModel\LocalSymbol.cs (1)
54
ScopedKind ILocalSymbol.ScopedKind => _underlying.
Scope
;