It seems that Roslyn provides new APIs to expose many compiler internal data structure for code analysis, etc. And the C# and VB compiler has been rewritten for such purpose. So can I access the compiler source besides the new APIs?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Disclaimer: I work for Microsoft on the Roslyn team.

Source code for the compilers is not included in the Roslyn CTP. Releasing source is something that we are considering, but don't have any firm plans at the moment.

link|improve this answer
Roslyn uses a hacked up version of CCI based off of eric lippert's blog so in theory you can see part of the infrastructure here: cciast.codeplex.com – Michael B Oct 24 '11 at 18:19
1  
It's a relatively small portion, used primarily for emit. The bulk of the compiler (e.g. parser, binder, syntax tree API, etc.) are not available. – Dustin Campbell Oct 25 '11 at 0:44
@MichaelB, could you point me to eric lippert's blog post? – Thomson Oct 27 '11 at 3:46
It's in the comments at blogs.msdn.com/b/ericlippert/archive/2011/10/19/…. Note that the Eric also mentions that we only use CCI for metadata emit and IL generation. – Dustin Campbell Oct 27 '11 at 12:58
feedback

The C# and VB compilers are being rewritten in C# and VB, respectively.

However, the source for the compilers has not yet been released.
Hopefully, the source will be released in the framework source drop for an upcoming version of .Net.

You can see the compilers in ILSpy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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