I need a parser or grammar for C# 3.0 (open-source license). What's the best choice today?
|
4
|
|||||||
|
|
|
Check out the ANTLR project. http://www.antlr.org/ You can get C# grammar from here: http://www.antlr.org/grammar/list |
||
|
|
|
|
I recommend at least looking at the LINQOverC# project hosted on codeproject.com. URL: http://www.codeplex.com/LinqOverCSharp There are some (minor?) known issues, and it hasn't been updated since Jan 2008 (which could be a pretty big issue), but the source code for a (fast, and 100% .Net) C# 3.0 parser is there for the taking. My favorite things about this parser:
Here's a sample LINQ query for finding a variable or parameter in a method, where the variable's name = VariableName:
|
||
|
|
|
|
Depends on what you are optimzing on. If you are optimizing on ability to transform C#, see the C# Front End for a parser that handles C# 1.2, 2.0 and 3.0 (including LINQ syntax). The C# Front End is built on top of DMS Software Reengineering Toolkit which provide parsing, automatic building of ASTs, support for symbol tables, source-to-source program transformation using source-level syntax with patterns, and AST back to source text prettyprinting. If you are looking to transform C# code, this is the tool to do it. (DMS is also used to analyze and transform code in Java, C, C++, JavaScript, COBOL and many other langauges). If you are optimizing on open source, this isn't the tool you want. |
|||
|
|
|
|
Check out Metaspec's C# parser:
|
||||
|
