* [Ada] Improve pretty-printing of iterated component associations
@ 2022-09-05 7:25 Marc Poulhiès
0 siblings, 0 replies; only message in thread
From: Marc Poulhiès @ 2022-09-05 7:25 UTC (permalink / raw)
To: gcc-patches; +Cc: Piotr Trojanek
[-- Attachment #1: Type: text/plain, Size: 395 bytes --]
Pretty-printing used mostly in the debugger now handles more Ada 2022
syntax features. In particular, now it correctly handles expressions like
"[for E of A when E /= X => E]".
Tested on x86_64-pc-linux-gnu, committed on trunk
gcc/ada/
* sprint.adb (Sprint_Node_Actual): Handle iterator_specification within
iterated_component_association and iterator_filter within
iterator_specification.
[-- Attachment #2: patch.diff --]
[-- Type: text/x-diff, Size: 1182 bytes --]
diff --git a/gcc/ada/sprint.adb b/gcc/ada/sprint.adb
--- a/gcc/ada/sprint.adb
+++ b/gcc/ada/sprint.adb
@@ -1341,9 +1341,13 @@ package body Sprint is
when N_Iterated_Component_Association =>
Set_Debug_Sloc;
Write_Str (" for ");
- Write_Id (Defining_Identifier (Node));
- Write_Str (" in ");
- Sprint_Bar_List (Discrete_Choices (Node));
+ if Present (Iterator_Specification (Node)) then
+ Sprint_Node (Iterator_Specification (Node));
+ else
+ Write_Id (Defining_Identifier (Node));
+ Write_Str (" in ");
+ Sprint_Bar_List (Discrete_Choices (Node));
+ end if;
Write_Str (" => ");
Sprint_Node (Expression (Node));
@@ -2307,6 +2311,11 @@ package body Sprint is
Sprint_Node (Name (Node));
+ if Present (Iterator_Filter (Node)) then
+ Write_Str (" when ");
+ Sprint_Node (Iterator_Filter (Node));
+ end if;
+
when N_Itype_Reference =>
Write_Indent_Str_Sloc ("reference ");
Write_Id (Itype (Node));
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-09-05 7:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-05 7:25 [Ada] Improve pretty-printing of iterated component associations Marc Poulhiès
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).