-
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.
- implements On_Declaration_Request - add test See ada_language_server#1225
- Loading branch information
Philippe Gil
committed
Apr 5, 2024
1 parent
48922d6
commit 76e3c05
Showing
8 changed files
with
995 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
aggregate project GPS_Aggregated is | ||
|
||
for Project_Files use | ||
("ignored.gpr", "navigation.gpr"); | ||
for Object_Dir use "obj"; | ||
|
||
end GPS_Aggregated; |
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,13 @@ | ||
abstract project Imported is | ||
type T is ("0", "1"); | ||
V := "0"; | ||
for Exec_Dir use "exe"; | ||
package Compiler is | ||
V := "0"; | ||
for Switches ("Ada") use (); | ||
end Compiler; | ||
package Builder is | ||
end Builder; | ||
package Binder is | ||
end Binder; | ||
end Imported; |
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,23 @@ | ||
with "ignored", "imported"; | ||
project Navigation is | ||
|
||
type T is ("0", "1"); | ||
V : T := "0"; | ||
for Source_Dirs use ("src"); | ||
package Compiler is | ||
V := (); | ||
for Switches ("Ada") use V; | ||
V1 := Navigation.Compiler'Switches ("Ada"); | ||
V2 := Compiler'Switches ("Ada"); | ||
V3 := Compiler.V; | ||
V4 : Imported.T := Imported.V; | ||
V5 := Imported'Exec_Dir; | ||
V6 := Imported.Compiler'Switches ("Ada"); | ||
V7 := Imported.Compiler.V; | ||
end Compiler; | ||
package Builder renames Imported.Builder; | ||
package Binder extends Imported.Binder is | ||
end Binder; | ||
V8 := V; | ||
|
||
end Navigation; |
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,7 @@ | ||
aggregate project GPS_Aggregated is | ||
|
||
for Project_Files use | ||
("ignored.gpr", "navigation.gpr"); | ||
for Object_Dir use "obj"; | ||
|
||
end GPS_Aggregated; |
Oops, something went wrong.