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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8c350c9f790688d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-02-12 10:36:25 PST Path: archiver1.google.com!news2.google.com!news.maxwell.syr.edu!irazu.switch.ch!switch.ch!newsfeed.nextoneserver.com!news-out.tin.it!news-in.tin.it!news4.tin.it.POSTED!not-for-mail From: "Francesco Bochicchio" Subject: Re: renames and access User-Agent: Pan/0.13.0 (The whole remains beautiful (Debian GNU/Linux)) Message-Id: Newsgroups: comp.lang.ada References: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Date: Thu, 12 Feb 2004 18:36:23 GMT NNTP-Posting-Host: 80.116.219.64 X-Complaints-To: newsmaster@tin.it X-Trace: news4.tin.it 1076610983 80.116.219.64 (Thu, 12 Feb 2004 19:36:23 MET) NNTP-Posting-Date: Thu, 12 Feb 2004 19:36:23 MET Organization: TIN Xref: archiver1.google.com comp.lang.ada:5493 Date: 2004-02-12T18:36:23+00:00 List-Id: On Wed, 11 Feb 2004 19:02:23 +0000, Robert A Duff wrote: > >> If this turns impossible, what would be an equivalent solution? At the >> moment, my bet is to turn the renames into access. Any better idea? > > Turning into access would work, but then you have to modify all the > clients. Right. > But how about this: > > function A return Integer is > begin > return REC_PTR.A; > end A; > > ? > I thought of that: 1. It adds a function call overhead for each time one of the variables is accessed ( and it happens a lot ) 2. It only solves variable reading. I don't see any equivalent way to assign values to the variables. Thanks anyway. Ciao ----- FB