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,3a6aafa384c96cc6 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-02 17:35:07 PST From: dale Newsgroups: comp.lang.ada Subject: Re: with child: access to parent Organization: rmit References: <9pc3jp$old$1@infosun2.rus.uni-stuttgart.de> <4Zgu7.7342$sh6.2399083554@newssvr30.news.prodigy.com> <9pchrq$8vt$1@infosun2.rus.uni-stuttgart.de> User-Agent: MT-NewsWatcher/3.0 (PPC) Date: Wed, 03 Oct 2001 10:34:58 +1000 Message-ID: NNTP-Posting-Host: dale.cs.rmit.edu.au X-Trace: itsawnews.its.rmit.edu.au 1002069294 dale.cs.rmit.edu.au (3 Oct 2001 10:34:54 +1000) Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news.mel.connect.com.au!newsroom.trumpet.com.au!news1.optus.net.au!optus!vrn.edu.au!131.170.8.40.MISMATCH!itsawnews.its.rmit.edu.au!dale Xref: archiver1.google.com comp.lang.ada:13657 Date: 2001-10-03T10:34:58+10:00 List-Id: Peter Hermann wrote: > does this mean, that > > with a.b.c.d; > > is equivalent to > > with a; > with a.b; > with a.b.c; > with a.b.c.d; Probably worth mentioning that the semantics for "use" are not the same. e.g. use a.b.c.d; is not equivalent to... use a; use a.b; use a.b.c; use a.b.c.d; Dale