-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote branch 'origin/master' into edge
- Loading branch information
Showing
13 changed files
with
387 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/bar.ads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package Bar is | ||
end Bar; |
2 changes: 2 additions & 0 deletions
2
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/corge.ads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package Corge is | ||
end Corge; |
3 changes: 3 additions & 0 deletions
3
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/default.gpr
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
project Default is | ||
for Main use ("main.adb"); | ||
end Default; |
2 changes: 2 additions & 0 deletions
2
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/foo.ads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package Foo is | ||
end Foo; |
6 changes: 6 additions & 0 deletions
6
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/main.adb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
with Main_Package; | ||
|
||
procedure Main is | ||
begin | ||
null; | ||
end Main; |
4 changes: 4 additions & 0 deletions
4
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/main_package.adb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package body Main_Package is | ||
begin | ||
null; | ||
end Main_Package; |
55 changes: 55 additions & 0 deletions
55
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/main_package.ads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
pragma Ada_2012; | ||
|
||
-- Comment 1 | ||
with Ada.Containers; -- Comment 2 | ||
-- Comment 3 | ||
private with Ada.Finalization; -- Comment 4 | ||
-- Comment 5 | ||
with Ada.Strings.Unbounded; -- Comment 6 | ||
private with Ada.Unchecked_Deallocation; -- Comment 7 | ||
-- Comment 8 | ||
|
||
-- Comment 9 | ||
-- Comment 10 | ||
private with Qux; -- Comment 11 | ||
pragma Elaborate (Qux); -- Comment 12 | ||
|
||
-- Comment 13 | ||
-- Comment 14 | ||
|
||
-- Comment 15 | ||
|
||
-- Comment 16 | ||
-- Comment 17 | ||
-- Comment 18 | ||
with Foo; -- Comment 19 | ||
pragma Elaborate_All (Foo); | ||
pragma Warnings (Off, -- Comment 20 | ||
Foo); -- Comment 21 | ||
-- Comment 22 | ||
|
||
limited with Corge; | ||
-- Comment 23 | ||
with Bar; use Bar; -- Comment 24 | ||
-- Comment 25 | ||
pragma Warnings (Off, -- Comment 26 | ||
Bar); | ||
|
||
use Foo; | ||
-- Comment 27 | ||
-- Comment 28 | ||
|
||
with Ada.Strings; | ||
with Ada.Containers.Vectors; | ||
with Ada.Containers.Hashed_Sets; | ||
|
||
with Ada.Strings.Hash; | ||
-- Comment 29 | ||
-- Comment 30 | ||
|
||
|
||
|
||
package Main_Package is | ||
pragma Elaborate_Body; | ||
|
||
end Main_Package; |
2 changes: 2 additions & 0 deletions
2
testsuite/ada_lsp/refactoring_sort_dependencies/prelude_range/qux.ads
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
package Qux is | ||
end Qux; |
Oops, something went wrong.