PsiLiteral class not found in CLion
Hello,
Some of PSI classes in my language plugin implements PsiLiteral interface.
In IDEA and some other products all is ok, but in CLion or PHPStorm the interface seems to be absent. When opening a file in editor it hangs with class not found exceptions in log.
Is this interface deprecated and not recommended for use?
I can remove the dependence from it as I don't use it directly in my code. Will it affect some functionality?
Please sign in to leave a comment.
This interface (and its superinterface) is currently located in Java part, and is meant to be used for literals in JVM language PSI. Most likely removing it from a non-JVM-language plugin shouldn't affect the functionality.