From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,81bb2ce65a3240c3 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.219.170 with SMTP id pp10mr3563617pbc.1.1341009463925; Fri, 29 Jun 2012 15:37:43 -0700 (PDT) Path: l9ni26pbj.0!nntp.google.com!news2.google.com!news1.google.com!newsfeed2.dallas1.level3.net!news.level3.com!bloom-beacon.mit.edu!newsswitch.lcs.mit.edu!nntp.TheWorld.com!.POSTED!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: What would you like in Ada202X? Date: Fri, 29 Jun 2012 18:37:43 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <3637793.35.1335340026327.JavaMail.geo-discussion-forums@ynfi5> <99d27165-f1da-4d0b-a121-fd8dbf637635@googlegroups.com> <1rs9slwdq614h.1drlo9pdojjso$.dlg@40tude.net> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 X-Trace: pcls6.std.com 1341009463 29622 192.74.137.71 (29 Jun 2012 22:37:43 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Fri, 29 Jun 2012 22:37:43 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:smtJckUVeQ2hhBk0NjVgMLQDJA8= Content-Type: text/plain; charset=us-ascii Date: 2012-06-29T18:37:43-04:00 List-Id: "Dmitry A. Kazakov" writes: > On Fri, 29 Jun 2012 04:29:03 -0700 (PDT), joachim.schroeer@cassidian.com > wrote: > >> 1. Want to see parameter modes in calls. >> >> procedure Proc (An_In_Parameter : in Integer; >> An_Out_Parameter : out Integer; >> An_Inout_Parameter : in out Integer; >> An_Access_Parameter : access Integer); >> >> Proc (An_In_Parameter <= A, >> An_Out_Parameter => B, >> An_Inout_Parameter <=> C, >> An_Access_Parameter -> D'Access); >> > > Proc > ( An_In_Parameter := A, > B := An_Out_Parameter, > C := An_Inout_Parameter := C, -- Note great opening opportunities! > D := An_Access_Parameter.all > ); > > OK, I am joking. (:-)) Something like that was allowed in the original Ada, circa 1980: Proc (An_In_Parameter := A, An_Out_Parameter =: B, An_Inout_Parameter :=: C, An_Access_Parameter := D'Access); I think it only worked for named notation. It should work for positional notation, too, IMHO. - Bob