1 write to StartOffset
Microsoft.CodeAnalysis (1)
src\Dependencies\CodeAnalysis.Debugging\StateMachineHoistedLocalScope.cs (1)
29
StartOffset
= startOffset;
6 references to StartOffset
Microsoft.CodeAnalysis (5)
PEWriter\MetadataWriter.PortablePdb.cs (1)
612
writer.WriteUInt32((uint)scope.
StartOffset
);
src\Dependencies\CodeAnalysis.Debugging\CustomDebugInfoEncoder.cs (1)
131
builder.WriteInt32(scope.
StartOffset
);
src\Dependencies\CodeAnalysis.Debugging\StateMachineHoistedLocalScope.cs (3)
20
/// If zero then <see cref="
StartOffset
"/> is also zero and the slot represents a synthesized local.
33
public int Length => EndOffset -
StartOffset
;
34
public bool IsDefault =>
StartOffset
== 0 && EndOffset == 0;
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
PDB\MethodDebugInfo.Native.cs (1)
149
.SelectAsArray(s => new HoistedLocalScopeRecord(s.
StartOffset
, s.Length));