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,41f54053ba96c4cb X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-06-21 15:44:21 PST Newsgroups: comp.lang.ada Path: archiver1.google.com!newsfeed.google.com!newsfeed.stanford.edu!novia!208.184.7.66.MISMATCH!newsfeed1.cidera.com!news-reader.ntrnet.net!uunet!ash.uu.net!xyzzy!nntp From: Jeffrey Carter Subject: Re: Data Elaboration X-Nntp-Posting-Host: e246420.msc.az.boeing.com Content-Type: text/plain; charset=us-ascii Message-ID: <3B327146.C1B43717@boeing.com> Sender: nntp@news.boeing.com (Boeing NNTP News Access) Content-Transfer-Encoding: 7bit Organization: The Boeing Company X-Accept-Language: en References: <3b321d2f$1@pull.gecm.com> Mime-Version: 1.0 Date: Thu, 21 Jun 2001 22:12:22 GMT X-Mailer: Mozilla 4.5 [en]C-CCK-MCD Boeing Kit (WinNT; U) Xref: archiver1.google.com comp.lang.ada:9010 Date: 2001-06-21T22:12:22+00:00 List-Id: Martin Dowie wrote: > > IF I have a package containing data object declarations, is > it specified with the RM that they will be elaborated in > the same order every time? e.g. > > package Blah is > > Bool1 : Boolean; -- always elaborates first > > Bool2 : Boolean; -- always elaborates second > > Int1 : Integer; -- always elaborates third > > end Blah; Yes. ARM 3.11(7) says "The elaboration of a declarative_part consists of the elaboration of the declarative_items, if any, in the order in which they are given in the declarative_part." -- Jeffrey Carter