Mark custom language elements as deprecated
Hi,
Is there an example of marking an element in a custom language as deprecated?
I've seen in the docs http://www.jetbrains.org/intellij/sdk/docs/reference_guide/custom_language_support/additional_minor_features.html that there's support for TODO so I'm wondering if something similar exists for deprecated.
Thank you.
Please sign in to leave a comment.
For Java it's com.intellij.codeInspection.deprecation.DeprecationInspection. The only "existing" functionality would be re-using com.intellij.codeInspection.ProblemHighlightType#LIKE_DEPRECATED in your inspection/annotator (if you don't want it user-configurable).