vote up 2 vote down star
1

Does anyone know of a good .NET library that allows me to parse source code files, but not only .NET source code files (like java, perl, ruby, etc)?

I need programmatic access to the contents of various source code files (e.g. class/method /parameter names, types, etc.).

Has anyone come across something like this? I know within .NET it is reasonably possible and there are some libraries out there, but I need that to be abstracted to more types of programming languages.

flag

3 Answers

vote up 1 vote down check

A few options:

  1. You could pick a parsing framework that has a lot of existing grammars (like Antlr or newer ones like Irony) and use that. This will offer the most fidelity.
  2. If you could stick to just .NET languages, you could use the Common Compiler Infrastructure tools to read the data from a compiled file.
  3. You could do a heuristic based approach like the SyntaxHighlighter component uses.
  4. You could piggy-back off existing tools that offer pluggable syntax highlighting files like VIM. You'd have to create or find a parser that understood those files though.
link|flag
Irony looks way more comfortable to me.. gonna go with that for a deeper evaluation.. thanks Jeff! – Jörg Battermann Jun 20 at 16:25
vote up 0 vote down

Not a full answer, but you might consider looking at this: Discovering Code with the Code Model

link|flag
vote up 0 vote down

Would Antlr meet your needs?

link|flag
Well Antlr does seem nice, but like a whole new world to explore / learn and get used to. I am more or less looking for a 'finished' product tailored for specific languages (e.g. something like metaspec.net for c#, but also for other languages)... – Jörg Battermann Jun 16 at 13:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.