Skip to content

Commit

Permalink
Merge pull request #73286 from dotnet/merges/release/dev17.10-to-rele…
Browse files Browse the repository at this point in the history
…ase/dev17.11

Merge release/dev17.10 to release/dev17.11
  • Loading branch information
dotnet-bot authored May 1, 2024
2 parents 28985c0 + abc35d6 commit f537451
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ namespace Roslyn.LanguageServer.Protocol
/// <summary>
/// Extension to Hover which adds additional data for colorization.
/// </summary>
[DataContract]
internal class VSInternalHover : Hover
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace Roslyn.LanguageServer.Protocol
/// Context for inline completion request.
/// See https://github.com/microsoft/vscode/blob/075ba020e8493f40dba89891b1a08453f2c067e9/src/vscode-dts/vscode.proposed.inlineCompletions.d.ts#L27.
/// </summary>
[DataContract]
internal class VSInternalInlineCompletionContext
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace Roslyn.LanguageServer.Protocol
///
/// See https://github.com/microsoft/vscode/blob/075ba020e8493f40dba89891b1a08453f2c067e9/src/vscode-dts/vscode.proposed.inlineCompletions.d.ts#L78.
/// </summary>
[DataContract]
internal class VSInternalInlineCompletionItem
{
/// <summary>
Expand Down Expand Up @@ -45,4 +46,4 @@ internal class VSInternalInlineCompletionItem
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public InsertTextFormat? TextFormat { get; set; } = InsertTextFormat.Plaintext;
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace Roslyn.LanguageServer.Protocol
///
/// See https://github.com/microsoft/vscode/blob/075ba020e8493f40dba89891b1a08453f2c067e9/src/vscode-dts/vscode.proposed.inlineCompletions.d.ts#L72.
/// </summary>
[DataContract]
internal class VSInternalInlineCompletionList
{
/// <summary>
Expand All @@ -21,4 +22,4 @@ internal class VSInternalInlineCompletionList
[JsonProperty(Required = Required.Always)]
public VSInternalInlineCompletionItem[] Items { get; set; }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace Roslyn.LanguageServer.Protocol
///
/// See https://github.com/microsoft/vscode/blob/075ba020e8493f40dba89891b1a08453f2c067e9/src/vscode-dts/vscode.proposed.inlineCompletions.d.ts#L24.
/// </summary>
[DataContract]
internal class VSInternalInlineCompletionRequest : ITextDocumentParams
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ namespace Roslyn.LanguageServer.Protocol
/// <summary>
/// Class which represents extensions of <see cref="ReferenceParams"/> passed as parameter of find reference requests.
/// </summary>
[DataContract]
internal class VSInternalReferenceParams : ReferenceParams
{
/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ namespace Roslyn.LanguageServer.Protocol
///
/// See https://github.com/microsoft/vscode/blob/075ba020e8493f40dba89891b1a08453f2c067e9/src/vscode-dts/vscode.proposed.inlineCompletions.d.ts#L48.
/// </summary>
[DataContract]
internal class VSInternalSelectedCompletionInfo
{
/// <summary>
Expand Down Expand Up @@ -42,4 +43,4 @@ internal class VSInternalSelectedCompletionInfo
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public bool IsSnippetText { get; set; }
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ namespace Roslyn.LanguageServer.Protocol
/// <summary>
/// Text document capabilities specific to Visual Studio.
/// </summary>
[DataContract]
internal class VSInternalTextDocumentClientCapabilities : TextDocumentClientCapabilities
{
/// <summary>
Expand Down

0 comments on commit f537451

Please sign in to comment.