Base:
property
Location
Microsoft.CodeAnalysis.Diagnostic.Location
8 references to Location
Microsoft.CodeAnalysis (4)
Diagnostic\DiagnosticWithInfo.cs (4)
152
return Hash.Combine(this.
Location
.GetHashCode(), this.Info.GetHashCode());
170
this.
Location
.Equals(other._location) &&
183
return "Unresolved diagnostic at " + this.
Location
;
188
return "Void diagnostic at " + this.
Location
;
Microsoft.CodeAnalysis.CSharp (4)
Errors\CSDiagnostic.cs (3)
33
if (location != this.
Location
)
46
return new CSDiagnostic(info, this.
Location
, this.IsSuppressed);
56
return new CSDiagnostic(this.Info, this.
Location
, isSuppressed);
Symbols\Symbol_Attributes.cs (1)
498
Location location = withInfo.
Location
;