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
918 stars 118 forks source link

Codegen issue #49

Closed jeauger-unity closed 5 years ago

jeauger-unity commented 5 years ago

I pasted the following code and observed a codegen issue.

if (coroutine.MoveNext())
  return;

Debug.Log("Cool");
jeauger-unity commented 5 years ago

I selected "Parse as Member" instead of "Statement".

KirillOsenkov commented 5 years ago

Thanks for the report. Still, it shouldn't crash. I've fixed the nullref so it now gives an error message instead of a crash call stack.