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.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,df854b5838c3e14 X-Google-Attributes: gid103376,public From: bobduff@world.std.com (Robert A Duff) Subject: Re: Ada Parsing Tools (was Re: C/C++ knocks the crap out of Ada) Date: 1996/03/21 Message-ID: #1/1 X-Deja-AN: 143616772 references: <00001a73+00002504@msn.com> <3150DFBE.4B3D@mcs.com> organization: The World Public Access UNIX, Brookline, MA newsgroups: comp.lang.ada Date: 1996-03-21T00:00:00+00:00 List-Id: In article <3150DFBE.4B3D@mcs.com>, Mike Young wrote: >gnat's .ads and .adb files. These compiled without additional >difficulty, but aflex throws a constraint_error when initializing. I Look for a problem involving the change to type Character: In Ada 83, it had 128 characters; in Ada 95, it has 256. Aflex has an array indexed by Character, initialized with a 128-value aggregate, or something like that, hence the Constraint_Error. But somebody's already done this work. Is it available somewhere? - Bob