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] Grammar type expr #2039

Merged
merged 15 commits into from
Oct 5, 2019
Merged

Conversation

oowekyala
Copy link
Member

Grammar changes

  • Introduce TypeExpression, a node type that wraps a Type node but is an ASTExpression

    • This allows us to treat instanceof expressions as infix expressions (which they are, syntactically), and fix the weird inconsistency, that instanceof is in the middle of the precedence hierarchy of infix operators, yet is not itself an ASTInfixExpression. Now it has its own constant in BinaryOp, and ASTInstanceOfExpression extends ASTInfixExpression (its XPath name is InfixExpression too).
    • This also simplifies the qualifier of method call, method references, and field accesses. Previously it could have been a type, an expression, or an AmbiguousName (which implements both interfaces). Now we can use the single interface ASTExpression to unify them, and merge the methods getLhsType, getLhsExpression, getAmbiguousLhs (which were inconsistently defined anyway).
    • This is what Spoon does
  • Cleanup inconsistencies in the API of many nodes

    • align the API of ASTAssignmentExpression on that of ASTInfixExpression
    • rename the methods of ASTConditionalExpression to a simpler scheme (I'd like ASTIfStatement to have the same names)
    • Fix many doc comments or simplify them
      • In particular, fix many comments specifying that some node is a PrimaryExpression, or a node with a specific precedence. Since parentheses are flattened, any expression may appear there (even those that have a lower precedence, provided they were parenthesized). There were quite a few bugs where eg getLhsExpression expects an ASTPrimaryExpression even though anything can be there.

TBH ASTPrimaryExpression is not useful in the API since #1872, and we should probably scrap it entirely.

@oowekyala oowekyala added the in:ast About the AST structure or API, the parsing step label Sep 28, 2019
@oowekyala oowekyala added this to the 7.0.0 milestone Sep 28, 2019
@ghost
Copy link

ghost commented Sep 29, 2019

1 Message
📖 No java rules are changed!

Generated by 🚫 Danger

@adangel adangel changed the title Grammar type expr [java] Grammar type expr Sep 29, 2019
* Don't abbreviate getLhs/getRhs
* Make ExplicitConstructorInvocation implement QualifierOwner
Use AtLeastOneChild to remove nullability warnings.
@oowekyala oowekyala self-assigned this Oct 5, 2019
@oowekyala oowekyala merged commit d56f61b into pmd:java-grammar Oct 5, 2019
@oowekyala oowekyala deleted the grammar-type-expr branch October 5, 2019 12:58
@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