2 instantiations of StateMachineHoistedLocalScope
Microsoft.CodeAnalysis (2)
CodeGen\LocalScopeManager.cs (1)
504var newScope = new StateMachineHoistedLocalScope(begin, end);
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (1)
195builder.Add(new StateMachineHoistedLocalScope(startOffset, endOffset));
24 references to StateMachineHoistedLocalScope
Microsoft.CodeAnalysis (24)
CodeGen\ILBuilder.cs (1)
215internal 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, 145ImmutableArray<StateMachineHoistedLocalScope> Cci.IMethodBody.StateMachineHoistedLocalScopes
Emit\EditAndContinue\DeletedMethodBody.cs (2)
45public ImmutableArray<StateMachineHoistedLocalScope> StateMachineHoistedLocalScopes => ImmutableArray<StateMachineHoistedLocalScope>.Empty;
Emit\NoPia\CommonEmbeddedMethod.cs (2)
150ImmutableArray<StateMachineHoistedLocalScope> Cci.IMethodBody.StateMachineHoistedLocalScopes => 151default(ImmutableArray<StateMachineHoistedLocalScope>);
PEWriter\Members.cs (1)
467ImmutableArray<StateMachineHoistedLocalScope> StateMachineHoistedLocalScopes { get; }
PEWriter\MetadataWriter.PortablePdb.cs (1)
610foreach (var scope in scopes)
PEWriter\RootModuleStaticConstructor.cs (2)
154public ImmutableArray<StateMachineHoistedLocalScope> StateMachineHoistedLocalScopes => ImmutableArray<StateMachineHoistedLocalScope>.Empty;
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoEncoder.cs (2)
110public void AddStateMachineHoistedLocalScopes(ImmutableArray<StateMachineHoistedLocalScope> scopes) 123foreach (var scope in s)
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoReader.cs (2)
173public static ImmutableArray<StateMachineHoistedLocalScope> DecodeStateMachineHoistedLocalScopesRecord(ImmutableArray<byte> bytes) 179var builder = ArrayBuilder<StateMachineHoistedLocalScope>.GetInstance(bucketCount);