Skip to content
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

Merged
merged 20 commits into from
Oct 7, 2019

Conversation

oowekyala
Copy link
Member

@oowekyala oowekyala commented Sep 27, 2019

This fleshes out ASTMethodOrConstructorDeclaration to abstract what can be abstracted, and align their grammar more closely

Grammar changes

  • Merge ASTAnnotationMethodDeclaration into ASTMethodDeclaration. I don't see the point of having two separate nodes, the only API difference is that annotation methods may have a default value.
    • The removed node had no MethodDeclarator, or FormalParameters, which just introduced more nullability in the API
  • Add an ASTBlock as a child of ASTConstructorDeclaration -> was just inconsistent
  • Replace NameList with ThrowsList
  • Remove MethodDeclarator, former children are direct children of the method declaration. This node just introduced inconsistencies (ConstructorDeclaration didn't have it) and an unnecessary level of nesting.
  • Add many useful methods to ASTMethodOrConstructorDeclaration

API changes

  • Add JavaNode#getEnclosingType, ASTCompilationUnit#{getPackageName, getTypeDeclarations}
  • Rename ASTMethodDeclaration#getBlock to getBody, now shared by constructor declarations
  • Rename ASTConstructorDeclaration#getParameterCount to getArity, now shared by method declarations

Internal changes

  • Reimplement the name fetching routines of JavaRuleViolation so that they don't use the old symbol table anymore. That was completely unnecessary and the old symbol table is broken a bit more by this PR.

TODO on master

  • Deprecate AbstractJavaRule#getDeclaringType (replaced by JavaNode#getEnclosingType)
    • Backport JavaNode#getEnclosingType to master
    • AbstractJavaRule#getDeclaringType is useless, it only cares for class or interface types, it returns a simple string, even though the enclosing type may be anonymous...
    • The new method returns the node instead, and is available everywhere
    • -> a12afd1
  • 04e5619 Deprecate ASTMethodDeclaration#getMethodDeclarator - the methods "getFormalParameters()", "getMethodName()" should be used directly instead.
    • also add "getParameterCount()"/"getArity()" to ASTMethodDeclaration
    • introduce the new aliases for the other renamed methods on master and deprecate the old ones (like what was done for getFormalParameters)
      • ASTMethodDeclaration#getBlock -> getBody
      • ASTConstructorDeclaration#getParameterCount -> getArity

…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
@oowekyala oowekyala added the in:ast About the AST structure or API, the parsing step label Sep 27, 2019
@oowekyala oowekyala added this to the 7.0.0 milestone Sep 27, 2019
@ghost
Copy link

ghost commented Sep 27, 2019

1 Message
📖 No java rules are changed!

Generated by 🚫 Danger

@adangel adangel self-requested a review September 30, 2019 17:50
Copy link
Member

@adangel adangel left a 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?

@adangel
Copy link
Member

adangel commented Oct 5, 2019

Maybe, introduce the new aliases for the other renamed methods on master and deprecate the
old ones (like what was done for getFormalParameters)

Which ones do you mean?

@oowekyala
Copy link
Member Author

Which ones do you mean?

ASTMethodDeclaration#getBlock -> getBody
ASTConstructorDeclaration#getParameterCount -> getArity

oowekyala added a commit that referenced this pull request Oct 5, 2019
Also, replace deprecated method usages
@oowekyala oowekyala merged commit 3c31b2d into pmd:java-grammar Oct 7, 2019
@oowekyala oowekyala deleted the grammar-method-alignment branch October 7, 2019 14:50
adangel added a commit to adangel/pmd that referenced this pull request Oct 26, 2019
@adangel adangel mentioned this pull request Jan 23, 2023
55 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in:ast About the AST structure or API, the parsing step
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants