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,e0c572c66918d29d X-Google-Attributes: gid103376,public X-Google-Thread: 10a146,e0c572c66918d29d X-Google-Attributes: gid10a146,public X-Google-Thread: f5e83,e0c572c66918d29d X-Google-Attributes: gidf5e83,public X-Google-Thread: 109fba,e0c572c66918d29d X-Google-Attributes: gid109fba,public X-Google-Thread: 107d55,e0c572c66918d29d X-Google-Attributes: gid107d55,public X-Google-Thread: 1014db,e0c572c66918d29d X-Google-Attributes: gid1014db,public From: "Ira D. Baxter" Subject: Re: Identifying language constructs Date: 2000/02/06 Message-ID: #1/1 X-Deja-AN: 582340586 References: <389BA0DC.F1FD7C73@uah.edu> Organization: Posted via Supernews, http://www.supernews.com X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Newsgroups: comp.lang.c++,comp.lang.java.programmer,comp.lang.java.softwaretools,comp.lang.java.tech,comp.lang.c,comp.lang.ada X-Complaints-To: newsabuse@supernews.com Date: 2000-02-06T00:00:00+00:00 List-Id: You could struggle to find your own parser generator and appropriate grammars. I assume you don't want spend a year or two doing this. If not, look at the DMS Reengineering Toolkit (http:/www.semdesigns.com/Products/DMS/DMSToolkit.html). We have done all that and lots for the languages you list, and other languages besides. But... its a commercial product. Lab User wrote in message <389BA0DC.F1FD7C73@uah.edu>... >Hi >I need a way to programically recognise basic construct of the following >languages: >Ada, C, C++, Java. >I need to recognise comments statements, declarations, assignments, >function calls, >other operations, class declarations, list of inherited methods for the >class, >list of newly defined methods, correctly recognise if a class is defined >inside other class, etc. > >Any suggestion how to do it? >Any ideas for any of the listed (or other) languages ? > >Thanks a lot >