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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9862c21fee63f95c X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-06-11 00:49:57 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!news.stealth.net news.stealth.net!news.stealth.net!204.127.161.156.MISMATCH!wn12feed!wn14feed!worldnet.att.net!204.127.198.203!attbi_feed3!attbi.com!rwcrnsc53.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: Visibility and Elaboration References: <3EE6D120.2020701@attbi.com> X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: rwcrnsc53 1055317785 12.234.13.56 (Wed, 11 Jun 2003 07:49:45 GMT) NNTP-Posting-Date: Wed, 11 Jun 2003 07:49:45 GMT Organization: AT&T Broadband Date: Wed, 11 Jun 2003 07:49:45 GMT Xref: archiver1.google.com comp.lang.ada:38957 Date: 2003-06-11T07:49:45+00:00 List-Id: > > "we elaborate declarations and execute statements", Barnes, > ... > But some declarations occur in declare blocks, or in the declarative > part of a task or in one of several other areas where elaboration csn > occur well after the main program starts executing. I remain confused. That sentence sounds like elaboration after the main program starts, is at least mildly unusual. But my understanding is that procedure p(n:in positive) is x : array(1 .. n) of integer; causes the "elaboration" of "x" each time "p" is called, ie, executing a program is typically a constant back and forth between elaborating declarations and executing statements.