1 override of PreviousHoistedLocalSlotCount
Microsoft.CodeAnalysis (1)
Emit\EditAndContinue\EncVariableSlotAllocator.cs (1)
229
public override int
PreviousHoistedLocalSlotCount
=> _hoistedLocalSlotCount;
3 references to PreviousHoistedLocalSlotCount
Microsoft.CodeAnalysis (1)
CodeGen\VariableSlotAllocator.cs (1)
47
/// Still, new hoisted variables are assigned slots starting with <see cref="
PreviousHoistedLocalSlotCount
"/>.
Microsoft.CodeAnalysis.CSharp (2)
Compiler\MethodCompiler.cs (1)
1814
int previousAwaiterSlotCount = variableSlotAllocatorOpt.
PreviousHoistedLocalSlotCount
;
Lowering\StateMachineRewriter\StateMachineRewriter.cs (1)
149
nextFreeHoistedLocalSlot = mapToPreviousFields ? slotAllocatorOpt.
PreviousHoistedLocalSlotCount
: 0;