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] Add void type node to replace ResultType #2715

Merged
merged 2 commits into from
Aug 23, 2020

Conversation

oowekyala
Copy link
Member

Describe the PR

Add a VoidType node to replace ResultType. This means we don't need the ResultType wrapper when the method is not void, and the result type node is never null:

CodeOld ASTNew AST
void foo();
└─ MethodDeclaration
   └─ ResultType[@Void=true()]
   └─ MethodDeclarator
      └─ FormalParameters
└─ MethodDeclaration
   └─ ModifierList
   └─ VoidType
   └─ FormalParameters

int foo();
└─ MethodDeclaration
   └─ ResultType[@Void=false()]
      └─ Type
         └─ PrimitiveType
   └─ MethodDeclarator
      └─ FormalParameters
└─ MethodDeclaration
   └─ ModifierList
   └─ PrimitiveType
   └─ FormalParameters

This also makes the qualifier of a ClassLiteral non-null, which removes the inconsistency between void.class and T.class:

CodeCurrent java-grammarAfter this PR
void.class
ClassLiteral[@Void=true()]
└─ ClassLiteral
   └─ VoidType
int.class
└─ ClassLiteral
   └─ PrimitiveType
└─ ClassLiteral
   └─ PrimitiveType

(this change description is relative to java-grammar as ASTClassLiteral does not exist on master, so we don't have to put it into the clean release notes).

Related issues

  • Fixes #

Ready?

  • Added unit tests for fixed bug/feature
  • Passing all unit tests
  • Complete build ./mvnw clean verify passes (checked automatically by travis)
  • Added (in-code) documentation (if needed)

@oowekyala oowekyala added the in:ast About the AST structure or API, the parsing step label Aug 14, 2020
@oowekyala oowekyala added this to the 7.0.0 milestone Aug 14, 2020
@ghost
Copy link

ghost commented Aug 14, 2020

1 Message
📖 No java rules are changed!

Generated by 🚫 Danger

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.

@oowekyala oowekyala merged commit 29482a1 into pmd:java-grammar Aug 23, 2020
@oowekyala oowekyala deleted the grammar-void-type branch August 23, 2020 18:50
@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