-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'topic/1248' into 'master'
gnat_xref: handle references to generic formal objects Closes #1248 See merge request eng/libadalang/libadalang!1524
- Loading branch information
Showing
5 changed files
with
56 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
4 changes: 4 additions & 0 deletions
4
testsuite/tests/name_resolution/gnat_xref_generic_formal_objects/prj.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,4 @@ | ||
project Prj is | ||
for Source_Dirs use ("."); | ||
for Main use ("test.adb"); | ||
end Prj; |
25 changes: 25 additions & 0 deletions
25
testsuite/tests/name_resolution/gnat_xref_generic_formal_objects/test.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,25 @@ | ||
procedure Test is | ||
generic | ||
type T is (<>); | ||
A, B, C : Integer; | ||
with function F return Integer; | ||
with procedure G; | ||
package P is end P; | ||
|
||
generic | ||
type T is (<>); | ||
A, B, C : Integer; | ||
with function F return Integer; | ||
with procedure G; | ||
procedure Proc; | ||
-- GNAT doesn't add references to generic subprogram formal objects as it | ||
-- does for generic packages. If GNAT supports them one day, gnat_compare | ||
-- already supports it. | ||
|
||
procedure Proc is | ||
begin | ||
null; | ||
end Proc; | ||
begin | ||
null; | ||
end; |
20 changes: 20 additions & 0 deletions
20
testsuite/tests/name_resolution/gnat_xref_generic_formal_objects/test.out
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,20 @@ | ||
== test.adb == | ||
test.adb:1:11 => test.adb:1:11 (LAL: ok) | ||
test.adb:3:12 => test.adb:7:12 (LAL: ok) | ||
test.adb:4:7 => test.adb:7:12 (LAL: ok) | ||
test.adb:4:10 => test.adb:7:12 (LAL: ok) | ||
test.adb:4:13 => test.adb:7:12 (LAL: ok) | ||
test.adb:5:21 => test.adb:7:12 (LAL: ok) | ||
test.adb:6:22 => test.adb:7:12 (LAL: ok) | ||
test.adb:7:21 => test.adb:7:12 (LAL: ok) | ||
test.adb:19:14 => test.adb:14:14 (LAL: ok) | ||
test.adb:22:8 => test.adb:14:14 (LAL: ok) | ||
|
||
Stats: | ||
GNAT xrefs have 10 entries | ||
LAL xrefs have: | ||
* 10 OK entries (100.00%) | ||
* 0 DIFFERENT entries (0.00%) | ||
* 0 ERROR entries (0.00%) | ||
* 0 MISSING entries (0.00%) | ||
* 0 ADDITIONAL entries (0.00%) |
2 changes: 2 additions & 0 deletions
2
testsuite/tests/name_resolution/gnat_xref_generic_formal_objects/test.yaml
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 @@ | ||
driver: gnat-compare | ||
project_file: prj.gpr |