Integrated: 8267221: jshell feedback is incorrect when creating method with array varargs parameter
Jan Lahoda
jlahoda at openjdk.java.net
Wed May 26 11:15:17 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.
This pull request has now been integrated.
Changeset: f6322549
Author: Jan Lahoda <jlahoda at openjdk.org>
URL: https://git.openjdk.java.net/jdk/commit/f632254943e335d0b4a76d03530309cd194b0813
Stats: 34 lines in 3 files changed: 32 ins; 0 del; 2 mod
8267221: jshell feedback is incorrect when creating method with array varargs parameter
Reviewed-by: vromero
-------------
PR: https://git.openjdk.java.net/jdk/pull/4187
More information about the compiler-dev
mailing list