-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathPasLS.RemoveEmptyMethods.pas
More file actions
119 lines (97 loc) · 3.07 KB
/
PasLS.RemoveEmptyMethods.pas
File metadata and controls
119 lines (97 loc) · 3.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
// Pascal Language Server
// Copyright 2020 Ryan Joseph
// This file is part of Pascal Language Server.
// Pascal Language Server is free software: you can redistribute it
// and/or modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation, either version 3 of
// the License, or (at your option) any later version.
// Pascal Language Server is distributed in the hope that it will be
// useful, but WITHOUT ANY WARRANTY; without even the implied warranty
// of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with Pascal Language Server. If not, see
// <https://www.gnu.org/licenses/>.
unit PasLS.RemoveEmptyMethods;
{$mode objfpc}{$H+}
interface
uses
{ RTL }
Classes, SysUtils,
{ Codetools }
CodeToolManager, CodeCache,
{ LSP }
LSP.Messages, LSP.Basic, LSP.Base;
Type
{ TRemoveEmptyMethods }
TRemoveEmptyMethods = Class(TObject)
private
FTransport: TMessageTransport;
Public
Constructor Create(aTransport : TMessageTransport);
Procedure Execute(const aDocumentURI : String; aPosition: TPosition); virtual;
Property Transport : TMessageTransport Read FTransport;
end;
implementation
uses
{ codetools }
PascalParserTool, CodeToolsStructs,
{ LSP }
PasLS.ApplyEdit;
{ TRemoveEmptyMethods }
constructor TRemoveEmptyMethods.Create(aTransport: TMessageTransport);
begin
FTransport:=aTransport;
end;
procedure TRemoveEmptyMethods.Execute(const aDocumentURI: String;
aPosition: TPosition);
Const
Attributes =
[phpAddClassName,phpDoNotAddSemicolon,phpWithoutParamList,
phpWithoutBrackets,phpWithoutClassKeyword,phpWithoutSemicolon];
var
aList : TFPList;
allEmpty : Boolean;
aX,aY : Integer;
Msg : String;
RemovedProcHeads: TStrings;
Code : TCodeBuffer;
aRange : TRange;
begin
Code:=CodeToolBoss.FindFile(URIToPath(aDocumentUri));
if Code=Nil then
begin
Transport.SendDiagnostic('Cannot find file %s',[aDocumentURI]);
exit;
end;
aY:=aPosition.line+1;
aX:=aPosition.character+1;
RemovedProcHeads:=Nil;
aList:=TFPList.Create;
try
// check whether cursor is in a class
if not CodeToolBoss.FindEmptyMethods(Code,'',aX,aY,AllPascalClassSections,aList,AllEmpty) then
begin
Msg:=CodeToolBoss.ErrorMessage;
if Msg='' then
Msg:='No class at caret position';
Transport.SendDiagnostic('Cannot find empty methods in file %s: %s',[aDocumentURI,Msg]);
exit;
end;
if not CodeToolBoss.RemoveEmptyMethods(Code,'',aX,aY,AllPascalClassSections,AllEmpty, Attributes, RemovedProcHeads) then
Transport.SendDiagnostic('Failed to remove empty methods in file %s',[aDocumentURI])
else
begin
aRange := TRange.Create(0, 0, MaxInt, MaxInt);
try
DoApplyEdit(Transport,aDocumentURI, Code.Source, aRange);
finally
aRange.Free;
end;
end;
finally
CodeToolBoss.FreeListOfPCodeXYPosition(aList);
RemovedProcHeads.Free;
end;
end;
end.