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=unavailable autolearn_force=no version=3.4.4 X-Received: by 2002:ac8:53cf:: with SMTP id c15mr12472130qtq.230.1591389275002; Fri, 05 Jun 2020 13:34:35 -0700 (PDT) X-Received: by 2002:aca:b30a:: with SMTP id c10mr2926180oif.44.1591389274735; Fri, 05 Jun 2020 13:34:34 -0700 (PDT) Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!news.gegeweb.eu!gegeweb.org!usenet-fr.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail Newsgroups: comp.lang.ada Date: Fri, 5 Jun 2020 13:34:34 -0700 (PDT) Complaints-To: groups-abuse@google.com Injection-Info: google-groups.googlegroups.com; posting-host=2a02:1206:4544:3750:e6:49ca:658a:4d8f; posting-account=gRqrnQkAAAAC_02ynnhqGk1VRQlve6ZG NNTP-Posting-Host: 2a02:1206:4544:3750:e6:49ca:658a:4d8f User-Agent: G2/1.0 MIME-Version: 1.0 Message-ID: Subject: Ann: HAC v.0.07, LEA 0.71 From: gautier_niouzes@hotmail.com Injection-Date: Fri, 05 Jun 2020 20:34:34 +0000 Content-Type: text/plain; charset="UTF-8" Xref: reader01.eternal-september.org comp.lang.ada:58976 Date: 2020-06-05T13:34:34-07:00 List-Id: In a nutshell: - HAC (the HAC Ada Compiler) has now an exception system, with messages and trace-backs. Details here: https://gautiersblog.blogspot.com/2020/06/hac-v007-exceptions-and-trace-backs.html - LEA (a Lightweight Editor for Ada) leverages trace-backs in its navigation system. Details here: https://gautiersblog.blogspot.com/2020/06/lea-071-with-exception-trace-back.html HAC is pure Ada (*). LEA is Windows only (although the LEA_Common part is pure Ada), but runs seamlessly on the Wine emulator for instance. Enjoy! __ (*) ... except for the following bit which should be easy to adapt if you build HAC with another compiler than GNAT: -- Here is the non-Ada-standard stuff in HAC_Pack. package Non_Standard is function Sys (Arg : Interfaces.C.char_array) return Integer; pragma Import(C, Sys, "system"); Directory_Separator : constant Character; pragma Import (C, Directory_Separator, "__gnat_dir_separator"); end Non_Standard;