Skip to content

Instantly share code, notes, and snippets.

@controlflow
Created January 21, 2017 20:43
Show Gist options
  • Save controlflow/33016f91e2da1feaa321012d06489d50 to your computer and use it in GitHub Desktop.
Save controlflow/33016f91e2da1feaa321012d06489d50 to your computer and use it in GitHub Desktop.
if (from.PrevSibling != null && from.PrevSibling.GetTokenType() == CSharpTokenType.WHITE_SPACE)
from = from.PrevSibling;
if (from.PrevSibling is ITokenNode prevToken && prevToken.GetTokenType() == CSharpTokenType.WHITE_SPACE)
from = prevToken;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment