1 write to StartOffset
Microsoft.CodeAnalysis (1)
StateMachineHoistedLocalScope.cs (1)
29StartOffset = startOffset;
6 references to StartOffset
Microsoft.CodeAnalysis (5)
CustomDebugInfoEncoder.cs (1)
133builder.WriteInt32(scope.StartOffset);
PEWriter\MetadataWriter.PortablePdb.cs (1)
612writer.WriteUInt32((uint)scope.StartOffset);
StateMachineHoistedLocalScope.cs (3)
20/// If zero then <see cref="StartOffset"/> is also zero and the slot represents a synthesized local. 33public int Length => EndOffset - StartOffset; 34public 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));