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-Thread: 103376,aea4cc77526f5e4a X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news2.google.com!news.glorb.com!feeder.erje.net!news-fra1.dfn.de!news0.de.colt.net!colt.net!peer-uk.news.demon.net!kibo.news.demon.net!mutlu.news.demon.net!news.demon.co.uk!demon!not-for-mail From: Simon Wright Newsgroups: comp.lang.ada Subject: Re: Separate Compilation in Programming Languages Date: Fri, 22 Feb 2008 20:47:25 +0000 Organization: Pushface Message-ID: References: NNTP-Posting-Host: pogner.demon.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.demon.co.uk 1203713244 24351 62.49.19.209 (22 Feb 2008 20:47:24 GMT) X-Complaints-To: abuse@demon.net NNTP-Posting-Date: Fri, 22 Feb 2008 20:47:24 +0000 (UTC) Cancel-Lock: sha1:hSM/InrYgnsrA4KAM5wjnp5RZEk= User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (darwin) Xref: g2news1.google.com comp.lang.ada:19992 Date: 2008-02-22T20:47:25+00:00 List-Id: We use separates to keep (re)generated package specs and bodies well away from the handwritten parts --having had some bad experiences with Rose/Ada (special --begin-handwritten, --end-handwritten comments and lots of opportunities for confusion). Also sometimes useful for AUnit testing -- put the test case into a package whose body is separate.