File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -268,7 +268,8 @@ package body LSP.GPR_Completions is
268
268
end Fill_Completion_Response ;
269
269
270
270
procedure Fill_Completion_Resolve_Response
271
- (Response : in out LSP.Structures.CompletionItem) is
271
+ (Response : in out LSP.Structures.CompletionItem)
272
+ is
272
273
Pack : Package_Id;
273
274
Attr : Q_Optional_Attribute_Id;
274
275
Doc_Text : VSS.Strings.Virtual_String;
Original file line number Diff line number Diff line change @@ -7080,7 +7080,7 @@ package body LSP.Message_IO is
7080
7080
elsif Key = " command" then
7081
7081
Optional_Command'Read (S, V.command);
7082
7082
elsif Key = " data" then
7083
- Optional_Location 'Read (S, V.data);
7083
+ Optional_LSP_Any 'Read (S, V.data);
7084
7084
else
7085
7085
JS.Skip_Value;
7086
7086
end if ;
@@ -7130,7 +7130,7 @@ package body LSP.Message_IO is
7130
7130
JS.Key (" command" );
7131
7131
Optional_Command'Write (S, V.command);
7132
7132
JS.Key (" data" );
7133
- Optional_Location 'Write (S, V.data);
7133
+ Optional_LSP_Any 'Write (S, V.data);
7134
7134
JS.End_Object;
7135
7135
end Write_CompletionItem ;
7136
7136
Original file line number Diff line number Diff line change @@ -7625,7 +7625,7 @@ package LSP.Messages is
7625
7625
additionalTextEdits : TextEdit_Vector;
7626
7626
commitCharacters : Optional_Virtual_String_Vector;
7627
7627
command : Optional_Command;
7628
- data : Optional_Location ;
7628
+ data : Optional_LSP_Any ;
7629
7629
end record ;
7630
7630
7631
7631
procedure Read_CompletionItem
You can’t perform that action at this time.
0 commit comments