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
;
122
(
FileName
, Provider, SourceLine, SourceColumn, ILOffset) == (other.
FileName
, other.Provider, other.SourceLine, other.SourceColumn, other.ILOffset);
125
public override int GetHashCode () => (
FileName
, Provider, SourceLine, SourceColumn, ILOffset).GetHashCode ();
148
if (
FileName
!= null && other.
FileName
!= null) {
149
return string.Compare (
FileName
, other.
FileName
);
150
} else if (
FileName
== null && other.
FileName
== null) {
154
return (
FileName
== null) ? 1 : -1;