-
-
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] About operator nodes #1661
Comments
The loss of information also happens for ShiftExpression and EqualityExpression. For RelationalExpression it doesn't, since you can't chain them (in fact according to the JLS, |
Closed via #1759 |
This poses some problems... The main problem is that the "+" operator is overloaded: it means either string concatenation or numeric addition. So We should probably add a constant to BinaryOp, to have separate operators, and rewrite the AdditiveExpression using type resolution. E.g. ideally
+ AdditiveExpression[@Type=String.class, @Operator=CONCAT]
+ AdditiveExpression[@Type=int, @Operator=ADD]
+ NumericLiteral
+ NumericLiteral
+ StringLiteral and + AdditiveExpression[@Type=String.class, @Operator=CONCAT]
+ NumericLiteral
+ NumericLiteral
+ StringLiteral The problem with that, is that this depends on classpath configuration, since the AST structure depends on the type of the operands. Another problem is that flattening deletes some intermediary type resolution results. Binary numeric promotion is applied to the operands (for shift statements, unary promotion), which may give a different result for every pair of operands. So if we want to preserve every intermediary type, which is the point of #497, we have to parse all expressions entirely left-recursively. That would make the structure more predictable, more JLS-like (also, more easily documented). It also would make it independent from type resolution. Currently type resolution does the promotion wrong too.
|
This relates to expression grammar changes. #1019
(>1)
as a condition. That adds an unnecessary layer of nesting. I think it would be better to have Expression #void, and a new node AssignmentExpression with no child operator node, instead the operator is on the image. This is consistent with how we don't push e.g. additive expression nodes if there is no additive operation mentioned -> it makes no sense to push ASTExpression if there is no assignment operator.pmd/pmd-java/etc/grammar/Java.jjt
Lines 2105 to 2115 in c637518
The way this is written, an expression such as
a + b + c - 1
would be parsed as an ASTAdditiveExpression with an image equal to "-", throwing away the fact we saw "+" twice. The same happens with MultiplicativeExpression.I see three possible options:
With this option, we'd have
Matching additive expressions with eg
AdditiveExpression[@Operator="+"]
wouldn't be possible anymore.IMO that's a good compromise. String concatenations, even big, would be flat, because they use only "+". The increased nesting is in fact consistent with how nesting of expressions of different precedences is done (eg
a + b * c
has two levels -> why nota + b - c
?).The text was updated successfully, but these errors were encountered: