Re: Looking for a fast C++ parser

Scott Nicol <snicol@apk.net>
10 Aug 2005 11:51:01 -0400

          From comp.compilers

Related articles
Designing a language for dataflow/parallelism peteg42@gmail.com (Peter Gammie) (2005-06-26)
Looking for a fast C++ parser nscc@c7.org (2005-08-07)
Re: Looking for a fast C++ parser snicol@apk.net (Scott Nicol) (2005-08-10)
Re: Looking for a fast C++ parser vidar.hokstad@gmail.com (Vidar Hokstad) (2005-08-10)
Re: Looking for a fast C++ parser firefly@diku.dk (Peter \Firefly\Lund) (2005-08-13)
Re: Looking for a fast C++ parser snicol@apk.net (Scott Nicol) (2005-08-16)
Re: Looking for a fast C++ parser Martin.Ward@durham.ac.uk (Martin Ward) (2005-08-16)
Re: Looking for a fast C++ parser firefly@diku.dk (Peter \Firefly\Lund) (2005-08-16)
Re: Looking for a fast C++ parser firefly@diku.dk (Peter \Firefly\Lund) (2005-08-16)
[2 later articles]
| List of all articles for this month |

From: Scott Nicol <snicol@apk.net>
Newsgroups: comp.compilers
Date: 10 Aug 2005 11:51:01 -0400
Organization: Compilers Central
References: 05-06-133 05-08-030
Keywords: C++, parse
Cc: compilers@iecc.com
Posted-Date: 10 Aug 2005 11:51:01 EDT

nscc@c7.org wrote:
> Hi, I'm looking for a very fast C++ parser that can be used for text
> highlighting purposes in an IDE. I'm interested in both open source or
> licensed software written in C or C++.


A full parser for text highlighting is overkill, and it creates a
problem. You have to expect the code being edited will have syntax
errors, and it would be nice if the editor could handle these errors
gracefully.


Take a look at the syntax coloring in gvim <http://www.vim.org/>.


--
Scott Nicol
snicol@apk.net



Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.