oowekyala / intellij-javacc

JavaCC and JJTree grammar support for the IntelliJ Platform
https://plugins.jetbrains.com/plugin/11431-javacc
MIT License
44 stars 6 forks source link

Exclude private regex specs from TokenCanNeverBeMatched inspection #7

Closed oowekyala closed 5 years ago

oowekyala commented 5 years ago

Eg the contents of "PAREN" should not be reported as never being matched

TOKEN :
{
< #PUNCT: <PAREN> | "." >
|
< #PAREN : "(" | ")" >
}