4 writes to ILOffset
illink (4)
Linker\MessageOrigin.cs (4)
49
ILOffset
= UnsetILOffset;
59
ILOffset
= ilOffset ?? UnsetILOffset;
68
ILOffset
= other.ILOffset;
77
ILOffset
= ilOffset;
12 references to ILOffset
illink (12)
Linker\MessageOrigin.cs (12)
68
ILOffset = other.
ILOffset
;
89
var offset =
ILOffset
== UnsetILOffset ? method.DebugInformation.SequencePoints[0].Offset :
ILOffset
;
126
(FileName, Provider, SourceLine, SourceColumn,
ILOffset
) == (other.FileName, other.Provider, other.SourceLine, other.SourceColumn, other.
ILOffset
);
129
public override int GetHashCode() => (FileName, Provider, SourceLine, SourceColumn,
ILOffset
).GetHashCode();
148
if (
ILOffset
!= UnsetILOffset && other.
ILOffset
!= UnsetILOffset)
149
return
ILOffset
.CompareTo(other.
ILOffset
);
151
return
ILOffset
== UnsetILOffset ? (other.
ILOffset
== UnsetILOffset ? 0 : 1) : -1;