-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[core] Antlr visitor rules #1774
[core] Antlr visitor rules #1774
Conversation
… into feature/antlr-visitor-rules
Generated by 🚫 Danger |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is an interesting change, it introduces some nice ideas that I think we can take further to reduce the complexity of language implementations (outside of this PR)
pmd-core/src/main/java/net/sourceforge/pmd/lang/antlr/AbstractAntlrVisitor.java
Outdated
Show resolved
Hide resolved
pmd-core/src/main/java/net/sourceforge/pmd/lang/antlr/AbstractAntlrVisitor.java
Show resolved
Hide resolved
pmd-core/src/main/java/net/sourceforge/pmd/lang/antlr/AntlrRuleChainVisitor.java
Show resolved
Hide resolved
pmd-core/src/main/java/net/sourceforge/pmd/lang/antlr/AntlrRuleViolationFactory.java
Show resolved
Hide resolved
pmd-core/src/main/java/net/sourceforge/pmd/lang/antlr/AntlrRuleViolationFactory.java
Show resolved
Hide resolved
pmd-core/src/main/java/net/sourceforge/pmd/lang/antlr/AntlrBaseParser.java
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@matifraga I think, the comments I made can be handled at a later stage, as they indeed are not limited to Antlr rules. I'll open a couple of tickets to track them. This PR seems otherwise perfectly fine to me and I think it can be merged.
@lsoncini @matifraga @tomidelucca I added the ANTLR support on the wiki here: https://github.com/pmd/pmd/wiki/PMD-7.0.0#language-specific-improvements to track the progress a bit and see, what's still ahead. Here are the points I see next:
|
Thanks @adangel ! Sorry about unit testing, we will unit test the classes we introduced already. We do have a working rule for Swift already, we will send a PR soon. Regarding XPath our first attempt making a rule didn't work out, we are currently digging the code to find out why. We will also document with examples all that is needed to add a new rule using antlr as we did with the CPD feature. |
Don't worry. I just wanted to make sure, you guys have this on your radar... |
This pull request depends on #1698.
Before submitting a PR, please check that:
master
. The PMD team will merge back to support branches as needed../mvnw clean verify
passes. This will build and test PMD, execute PMD and checkstyle rules. Check this for more infoPR Description:
This pull request adds the necessary classes to implement antlr-based abstract rules and generic implementations of both
RuleChainVisitor
(AntlrRuleChainVisitor
) andRuleViolationFactory
(AntlrRuleViolationFactory
).We also added
AbstractSwiftRule
to serve as an example to show how to implementAbstractAntlrVisitor
for a specific language and modified the ant-file antlr4.xml to make antlr's autogenerated BaseVisitors extendAbstractAntlrVisitor
.Team Raptor.