2 instantiations of SourceLocation
Microsoft.CodeAnalysis (2)
Diagnostic\Location.cs (1)
165return new SourceLocation(syntaxTree, textSpan);
Syntax\SyntaxNode.cs (1)
693return !tree.SupportsLocations ? NoLocation.Singleton : new SourceLocation(this);
3 references to SourceLocation
Microsoft.CodeAnalysis (3)
Diagnostic\SourceLocation.cs (3)
15internal sealed class SourceLocation : Location, IEquatable<SourceLocation?> 108public bool Equals(SourceLocation? other) 120return this.Equals(obj as SourceLocation);