I've started playing with Roslyn's syntax & semantic APIs. Haven't really digged hard yet but, is there any code optimization provided by semantic API like:

dead code elimination, hoisting or some sort of pointer analysis? or other analyses?

I'm aware that roslyn provides methods for DFA and CFA but anything coming as a bonus to that?

link|improve this question
feedback

1 Answer

There is nothing built in to the API, but it is possible to build you own features like this using the APIs. I know of some people who have had success using Roslyn to identify and remove dead code for example.

link|improve this answer
Well, there are RegionControlFlowAnalysis and RegionDataFlowAnalysis, but they don't seem to offer much with regards to what the OP wants. – svick Feb 20 at 17:24
Thanks for getting back Kevin. – Buse Naz Feb 20 at 20:40
feedback

Your Answer

 
or
required, but never shown

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