-
-
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
[java] Align method and constructor declaration grammar #2034
[java] Align method and constructor declaration grammar #2034
Conversation
…aration * Remove ASTConstructorDeclaration::getParameters -> use getFormalParameters * Remove ASTConstructorDeclaration::getParameterCount -> use getArity * Remove MethodDeclarator from MethodDeclaration grammar, deprecate node class * Add an ASTBlock to ASTConstructorDeclaration grammar and ASTMethodOrConstructorDeclaration::getBody * Remove ASTMethodDeclaration::getBlock in favour of getBody
Make JavaRuleViolation not depend on the old symbol table
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.
Do we need to do the deprecations on master first?
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/ast/ASTMethodDeclaration.java
Show resolved
Hide resolved
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/AbstractJavaRule.java
Show resolved
Hide resolved
pmd-java/src/main/java/net/sourceforge/pmd/lang/java/symboltable/MethodNameDeclaration.java
Show resolved
Hide resolved
Which ones do you mean? |
ASTMethodDeclaration#getBlock -> getBody |
Also, replace deprecated method usages
This fleshes out ASTMethodOrConstructorDeclaration to abstract what can be abstracted, and align their grammar more closely
Grammar changes
API changes
Internal changes
TODO on master
JavaNode#getEnclosingType
to masterAbstractJavaRule#getDeclaringType
is useless, it only cares for class or interface types, it returns a simple string, even though the enclosing type may be anonymous...