I'm new to the Scala AST concepts.
I need to traverse a Scala code tree that contains an expression such as:
classOf[org.apache.commons.lang3.ArrayUtils]
I need to be able to identify this case when pattern matching on scala.reflect.internal.Trees.Tree
.
For instance I know that it is not case _:Apply
What is the correct pattern in order to successfuly match this expression?