Implemented interface member:
3 references to Equals
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Handler\MapCode\MapCodeHandler.cs (1)
128if (!location.DocumentUri.Equals(textDocumentIdentifier.DocumentUri))
Protocol\DocumentUri.cs (1)
71public override bool Equals([NotNullWhen(true)] object? obj) => obj is DocumentUri other && this.Equals(other);
Protocol\Location.cs (1)
58this.DocumentUri.Equals(other.DocumentUri) &&