2 instantiations of StateMachineHoistedLocalScope
Microsoft.CodeAnalysis (2)
CodeGen\LocalScopeManager.cs (1)
504var newScope = new StateMachineHoistedLocalScope(begin, end);
CustomDebugInfoReader.cs (1)
195builder.Add(new StateMachineHoistedLocalScope(startOffset, endOffset));
25 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)); 815internal override ScopeBounds GetHoistedLocalScopes(ArrayBuilder<StateMachineHoistedLocalScope> result)
CodeGen\MethodBody.cs (3)
31private readonly ImmutableArray<StateMachineHoistedLocalScope> _stateMachineHoistedLocalScopes; 67ImmutableArray<StateMachineHoistedLocalScope> stateMachineHoistedLocalScopes, 142ImmutableArray<StateMachineHoistedLocalScope> Cci.IMethodBody.StateMachineHoistedLocalScopes
CustomDebugInfoEncoder.cs (2)
110public void AddStateMachineHoistedLocalScopes(ImmutableArray<StateMachineHoistedLocalScope> scopes) 123foreach (var scope in s)
CustomDebugInfoReader.cs (2)
173public static ImmutableArray<StateMachineHoistedLocalScope> DecodeStateMachineHoistedLocalScopesRecord(ImmutableArray<byte> bytes) 179var builder = ArrayBuilder<StateMachineHoistedLocalScope>.GetInstance(bucketCount);
Emit\EditAndContinue\DeletedMethodBody.cs (2)
55public ImmutableArray<StateMachineHoistedLocalScope> StateMachineHoistedLocalScopes => ImmutableArray<StateMachineHoistedLocalScope>.Empty;
Emit\NoPia\CommonEmbeddedMethod.cs (2)
147ImmutableArray<StateMachineHoistedLocalScope> Cci.IMethodBody.StateMachineHoistedLocalScopes => 148default(ImmutableArray<StateMachineHoistedLocalScope>);
PEWriter\Members.cs (1)
467ImmutableArray<StateMachineHoistedLocalScope> StateMachineHoistedLocalScopes { get; }
PEWriter\MetadataWriter.PortablePdb.cs (1)
610foreach (var scope in scopes)
PEWriter\RootModuleStaticConstructor.cs (2)
152public ImmutableArray<StateMachineHoistedLocalScope> StateMachineHoistedLocalScopes => ImmutableArray<StateMachineHoistedLocalScope>.Empty;
Microsoft.CodeAnalysis.CSharp (1)
Compiler\MethodCompiler.cs (1)
1616builder.GetHoistedLocalScopes() : default(ImmutableArray<StateMachineHoistedLocalScope>);