7 overrides of Scope
Microsoft.CodeAnalysis.CSharp (6)
CodeGen\Optimizer.cs (1)
2308
internal override ScopedKind
Scope
=> ScopedKind.None;
FlowAnalysis\NullableWalker.PlaceholderLocal.cs (1)
72
internal override ScopedKind
Scope
=> ScopedKind.None;
Symbols\Source\SourceLocalSymbol.cs (1)
90
internal sealed override ScopedKind
Scope
=> _scope;
Symbols\Synthesized\SynthesizedLocal.cs (1)
185
internal sealed override ScopedKind
Scope
=> ScopedKind.None;
Symbols\Synthesized\TypeSubstitutedLocalSymbol.cs (1)
111
internal override ScopedKind
Scope
=> throw new System.NotImplementedException();
Symbols\UpdatedContainingSymbolLocal.cs (1)
92
internal override ScopedKind
Scope
=> _underlyingLocal.Scope;
Microsoft.CodeAnalysis.CSharp.ExpressionEvaluator.ExpressionCompiler (1)
Symbols\EELocalSymbolBase.cs (1)
95
internal override ScopedKind
Scope
=> ScopedKind.None;
3 references to Scope
Microsoft.CodeAnalysis.CSharp (2)
Binder\RefSafetyAnalysis.cs (1)
397
var scopedModifier = _useUpdatedEscapeRules ? local.
Scope
: ScopedKind.None;
Symbols\PublicModel\LocalSymbol.cs (1)
54
ScopedKind ILocalSymbol.ScopedKind => _underlying.
Scope
;
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Semantics\RefFieldTests.cs (1)
15222
Assert.Equal(expectedScope, local.
Scope
);