KirillOsenkov / RoslynQuoter

Roslyn tool that for a given C# program shows syntax tree API calls to construct its syntax tree
http://roslynquoter.azurewebsites.net
Apache License 2.0
922 stars 118 forks source link

Add AssignmentExpressionSyntax to exception list #2

Closed akarpov89 closed 9 years ago

akarpov89 commented 9 years ago

Quoter throws an exception when input contains assignments. This commit fixes the problem by adding assignment expression node to exception list.

KirillOsenkov commented 9 years ago

Very nice, thanks for your help! I can't believe I missed that case.