You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With Java 8 type annotations, the dimensions of an array may each have different annotations, which our parser actually doesn't support... There are several instances of this problem:
Add a node for the array dimensions, which resembles the JLS for the Dims production. This wouldn't be API breaking, provided we make the dimensions of eg ReferenceType delegate to that Dims node.
Dimensionable should probably be deprecated entirely, and we could use a new interface to replace it that exposes the annotations and the dimensions for type resolution, based on the Dims node
To make the method return type resolution work correctly, we could make ReturnType a Dimensionable (and a TypeNode), and add the dimensions of the Dims node found in the method declarator to the dimensions found in the type node.
I imagine that could be 3 PRs
The text was updated successfully, but these errors were encountered:
* Remove `Dimensionable`, remove its methods from the former implementations (except from ASTArrayDimsAndInits, which is itself deprecated)
* The varargs ellipsis is now represented as an ArrayTypeDim.
* This affects FormalParameter and LambdaParameter
Closespmd#997. All forms of type annotations are now supported.
Problems
With Java 8 type annotations, the dimensions of an array may each have different annotations, which our parser actually doesn't support... There are several instances of this problem:
Type node
JLS
Our grammar:
https://github.com/pmd/pmd/blob/master/pmd-java/etc/grammar/Java.jjt#L1885-L1887
Array creation expression
JLS
Our grammar:
https://github.com/pmd/pmd/blob/master/pmd-java/etc/grammar/Java.jjt#L2261-L2269
VariableDeclaratorId
JLS
Our grammar:
https://github.com/pmd/pmd/blob/master/pmd-java/etc/grammar/Java.jjt#L1771-1787
Method declarations
The JLS allows array dimensions (including annotations) to be added after the formal parameter list, eg:
By the way, even without annotations, the parser currently discards the additionnal array dimensions, though it should be used in type resolution:
https://github.com/pmd/pmd/blob/master/pmd-java/etc/grammar/Java.jjt#L1822
This is related to the broader #910 changeset
Solution
Dims
production. This wouldn't be API breaking, provided we make the dimensions of eg ReferenceType delegate to that Dims node.I imagine that could be 3 PRs
The text was updated successfully, but these errors were encountered: