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
268268 end Fill_Completion_Response ;
269269
270270 procedure Fill_Completion_Resolve_Response
271- (Response : in out LSP.Structures.CompletionItem) is
271+ (Response : in out LSP.Structures.CompletionItem)
272+ is
272273 Pack : Package_Id;
273274 Attr : Q_Optional_Attribute_Id;
274275 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
70807080 elsif Key = " command" then
70817081 Optional_Command'Read (S, V.command);
70827082 elsif Key = " data" then
7083- Optional_Location 'Read (S, V.data);
7083+ Optional_LSP_Any 'Read (S, V.data);
70847084 else
70857085 JS.Skip_Value;
70867086 end if ;
@@ -7130,7 +7130,7 @@ package body LSP.Message_IO is
71307130 JS.Key (" command" );
71317131 Optional_Command'Write (S, V.command);
71327132 JS.Key (" data" );
7133- Optional_Location 'Write (S, V.data);
7133+ Optional_LSP_Any 'Write (S, V.data);
71347134 JS.End_Object;
71357135 end Write_CompletionItem ;
71367136
Original file line number Diff line number Diff line change @@ -7625,7 +7625,7 @@ package LSP.Messages is
76257625 additionalTextEdits : TextEdit_Vector;
76267626 commitCharacters : Optional_Virtual_String_Vector;
76277627 command : Optional_Command;
7628- data : Optional_Location ;
7628+ data : Optional_LSP_Any ;
76297629 end record ;
76307630
76317631 procedure Read_CompletionItem
You can’t perform that action at this time.
0 commit comments