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,e151cd4e58019c6c X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-04-10 10:05:08 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!hammer.uoregon.edu!skates!not-for-mail From: Stephen Leake Newsgroups: comp.lang.ada Subject: Re: Newbie: Best Ada Compiler for MS Windows ? Date: 10 Apr 2002 12:55:47 -0400 Organization: NASA Goddard Space Flight Center (skates.gsfc.nasa.gov) Message-ID: References: <5ee5b646.0204092008.7a6a41bc@posting.google.com> NNTP-Posting-Host: anarres.gsfc.nasa.gov Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: skates.gsfc.nasa.gov 1018458104 21426 128.183.220.71 (10 Apr 2002 17:01:43 GMT) X-Complaints-To: usenet@news.gsfc.nasa.gov NNTP-Posting-Date: 10 Apr 2002 17:01:43 GMT User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Xref: archiver1.google.com comp.lang.ada:22322 Date: 2002-04-10T17:01:43+00:00 List-Id: sk writes: > It is probably very stupid of me to jump into a difference > of opinion between Dewar and Moran, but I have to ask why > the calls > > "gnat.traceback.symbolic.symbolic_traceback(oops)" > > and > > "ada.text_io.put_line(ada.exceptions.exception_information(oops));" > > should be considered equivalent ? I think the point is that they are _not_ equivalent. Ada.Exceptions.Exception_Information is defined in the Ada standard, and we can hope that a "newbie" will be aware of it. GNAT.Traceback.Symbolic.Symbolic_Traceback is only defined in the GNAT documentation, apparently we cannot hope that a "newbie" will be aware of it. So if our hypothetical lazy newbie tries to get a stack dump from an exception, they will succeed with the "non-free" compiler, and fail with GNAT. Personally, I always read the GNAT documentation when I get a new version of GNAT, to see what new goodies are available. Any newbie worth their salt will do the same! -- -- Stephe