Skip to content

Commit 5f39179

Browse files
committed
Add a test case and CHANGELOG.md record.
1 parent ff55654 commit 5f39179

File tree

5 files changed

+448
-0
lines changed

5 files changed

+448
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ section below it for the last release. -->
88
* Added a `Ada: Report Issue` command that opens the [VS Code Issue Reporter](https://code.visualstudio.com/docs/supporting/FAQ#_report-an-issue-with-a-vs-code-extension) with an extension-specific template
99
* `Go to Definition` now jumps respectively on the `begin`, `private` and `body` keywords
1010
for subprograms, packages and tasks when clicking on the `is` keyword following their declarations
11+
* New refactoring: [Delete Entity](https://github.com/AdaCore/ada_language_server/blob/master/doc/refactoring_tools.md#delete-entity)
1112

1213
## 26.0.202507021
1314

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
project Default is
2+
for Main use ("main.adb");
3+
end Default;
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
procedure Main is
2+
procedure Proc (X : access procedure);
3+
procedure Proc_2;
4+
5+
procedure Proc (X : access procedure) is
6+
begin
7+
null;
8+
end;
9+
10+
procedure Proc_2 is
11+
begin
12+
null;
13+
end Proc_2;
14+
begin
15+
Proc (Proc_2'Access);
16+
end Main;

0 commit comments

Comments
 (0)