4 writes to FileName
illink (4)
Linker\MessageOrigin.cs (4)
45
FileName
= fileName;
55
FileName
= null;
64
FileName
= other.FileName;
73
FileName
= other.FileName;
13 references to FileName
illink (13)
Linker\MessageOrigin.cs (13)
64
FileName = other.
FileName
;
73
FileName = other.
FileName
;
85
string? fileName =
FileName
;
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();
155
if (
FileName
!= null && other.
FileName
!= null)
157
return string.Compare(
FileName
, other.
FileName
);
159
else if (
FileName
== null && other.
FileName
== null)
164
return (
FileName
== null) ? 1 : -1;