3 references to ThrowIfTrue
Microsoft.CodeAnalysis.LanguageServer.Protocol (3)
Extensions\Extensions.cs (1)
109
Contract.
ThrowIfTrue
(textDocument is not null && textDocument is not Document, $"{textDocument!.Id} is not a Document");
Handler\SemanticTokens\SemanticTokensHelpers.cs (1)
297
Contract.
ThrowIfTrue
(deltaLine < 0, $"deltaLine is less than 0: {deltaLine}");
Workspaces\LspWorkspaceManager.cs (1)
110
Contract.
ThrowIfTrue
(_trackedDocuments.ContainsKey(uri), $"didOpen received for {uri} which is already open.");