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,7eaf9f2597de2259 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-15 05:04:23 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!newsfeeds.belnet.be!news.belnet.be!news-FFM2.ecrc.net!news.iks-jena.de!lutz From: lutz@iks-jena.de (Lutz Donnerhacke) Newsgroups: comp.lang.ada Subject: Re: on package naming, should the word Date: Mon, 15 Oct 2001 12:04:13 +0000 (UTC) Organization: IKS GmbH Jena Message-ID: References: <9q25ec0248o@drn.newsguy.com> <9q421v0bbg@drn.newsguy.com> <9q4d850163k@drn.newsguy.com> <3BC9F6CC.E41BE18A@nbi.dk> <9qd2340djj@drn.newsguy.com> NNTP-Posting-Host: taranis.iks-jena.de X-Trace: branwen.iks-jena.de 1003147453 1366 217.17.192.37 (15 Oct 2001 12:04:13 GMT) X-Complaints-To: usenet@iks-jena.de NNTP-Posting-Date: Mon, 15 Oct 2001 12:04:13 +0000 (UTC) User-Agent: slrn/0.9.6.3 (Linux) Xref: archiver1.google.com comp.lang.ada:14518 Date: 2001-10-15T12:04:13+00:00 List-Id: * Robert*@ wrote: >In article <3BC9F6CC.E41BE18A@nbi.dk>, Jacob says... >>The object prefix notation has a very serious limitation, >>which would actually break quite a few of my programs. Using >>the object prefix notation, it is not possible to dispatch >>on the function result type. > >A simple example of what you mean? type Error is tagged abstract private; procedure Alarm (e : Error) is abstract; function Current_Error returns Error'Class; ... Alarm (Current_Error);