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