2 instantiations of StateMachineHoistedLocalScope
Microsoft.CodeAnalysis (2)
CodeGen\LocalScopeManager.cs (1)
504
var newScope = new
StateMachineHoistedLocalScope
(begin, end);
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (1)
195
builder.Add(new
StateMachineHoistedLocalScope
(startOffset, endOffset));
24 references to StateMachineHoistedLocalScope
Microsoft.CodeAnalysis (24)
CodeGen\ILBuilder.cs (1)
213
internal ImmutableArray<
StateMachineHoistedLocalScope
> GetHoistedLocalScopes()
CodeGen\LocalScopeManager.cs (8)
156
internal ImmutableArray<
StateMachineHoistedLocalScope
> GetHoistedLocalScopes()
158
var result = ArrayBuilder<
StateMachineHoistedLocalScope
>.GetInstance();
280
internal abstract ScopeBounds GetHoistedLocalScopes(ArrayBuilder<
StateMachineHoistedLocalScope
> result);
282
protected static ScopeBounds GetHoistedLocalScopes<TScopeInfo>(ArrayBuilder<
StateMachineHoistedLocalScope
> result, ImmutableArray<TScopeInfo>.Builder scopes)
471
internal override ScopeBounds GetHoistedLocalScopes(ArrayBuilder<
StateMachineHoistedLocalScope
> result)
504
var
newScope = new StateMachineHoistedLocalScope(begin, end);
510
result.Add(default(
StateMachineHoistedLocalScope
));
817
internal override ScopeBounds GetHoistedLocalScopes(ArrayBuilder<
StateMachineHoistedLocalScope
> result)
CodeGen\MethodBody.cs (3)
31
private readonly ImmutableArray<
StateMachineHoistedLocalScope
> _stateMachineHoistedLocalScopes;
69
ImmutableArray<
StateMachineHoistedLocalScope
> stateMachineHoistedLocalScopes,
145
ImmutableArray<
StateMachineHoistedLocalScope
> Cci.IMethodBody.StateMachineHoistedLocalScopes
Emit\EditAndContinue\DeletedMethodBody.cs (2)
46
public ImmutableArray<
StateMachineHoistedLocalScope
> StateMachineHoistedLocalScopes => ImmutableArray<
StateMachineHoistedLocalScope
>.Empty;
Emit\NoPia\CommonEmbeddedMethod.cs (2)
150
ImmutableArray<
StateMachineHoistedLocalScope
> Cci.IMethodBody.StateMachineHoistedLocalScopes =>
151
default(ImmutableArray<
StateMachineHoistedLocalScope
>);
PEWriter\Members.cs (1)
467
ImmutableArray<
StateMachineHoistedLocalScope
> StateMachineHoistedLocalScopes { get; }
PEWriter\MetadataWriter.PortablePdb.cs (1)
610
foreach (
var
scope in scopes)
PEWriter\RootModuleStaticConstructor.cs (2)
154
public ImmutableArray<
StateMachineHoistedLocalScope
> StateMachineHoistedLocalScopes => ImmutableArray<
StateMachineHoistedLocalScope
>.Empty;
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoEncoder.cs (2)
110
public void AddStateMachineHoistedLocalScopes(ImmutableArray<
StateMachineHoistedLocalScope
> scopes)
123
foreach (
var
scope in s)
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (2)
173
public static ImmutableArray<
StateMachineHoistedLocalScope
> DecodeStateMachineHoistedLocalScopesRecord(ImmutableArray<byte> bytes)
179
var builder = ArrayBuilder<
StateMachineHoistedLocalScope
>.GetInstance(bucketCount);