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