Skip to content

Instantly share code, notes, and snippets.

@controlflow
Created August 5, 2020 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save controlflow/9201dd165f13ca0cba22c6dec76fe290 to your computer and use it in GitHub Desktop.
Save controlflow/9201dd165f13ca0cba22c6dec76fe290 to your computer and use it in GitHub Desktop.
if (declaredElement is ITypeElement && !(declaredElement is IDelegate))
return false;
if (declaredElement is IFunction && !(declaredElement is IMethod) || declaredElement is ILabel || declaredElement is INamespace)
return false;
if (declaredElement is ITypeElement and not IDelegate)
return false;
if (declaredElement is (IFunction and not IMethod) or ILabel or INamespace)
return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment