RFR: 8267221: jshell feedback is incorrect when creating method with array varargs parameter
Vicente Romero
vromero at openjdk.java.net
Tue May 25 16:26:56 UTC 2021
On Tue, 25 May 2021 15:30:05 GMT, Jan Lahoda <jlahoda at openjdk.org> wrote:
> When writing something like `void t(int[]... p) {}` into JShell, one gets:
>
> jshell> void t(int[]... p) {}
> | created method t(int[])
>
>
> Note the wrong parameter type `int[]` instead of `int[]...` or at least `int[][]`. The reason is that the span of the type is incorrect when the type is varargs. The proposed patch is an attempt to fix the span.
looks good
-------------
Marked as reviewed by vromero (Reviewer).
PR: https://git.openjdk.java.net/jdk/pull/4187
More information about the compiler-dev
mailing list