Skip to content

Commit 8007599

Browse files
biboudislahodaj
authored andcommittedJun 2, 2023
8309093: Underscore with brackets
Reviewed-by: jlahoda
1 parent 5bd2af2 commit 8007599

File tree

6 files changed

+50
-3
lines changed

6 files changed

+50
-3
lines changed
 

‎src/jdk.compiler/share/classes/com/sun/tools/javac/parser/JavacParser.java

+3
Original file line numberDiff line numberDiff line change
@@ -624,6 +624,9 @@ protected Name ident(boolean allowClass, boolean asVariable) {
624624
log.warning(token.pos, Warnings.UnderscoreAsIdentifier);
625625
} else if (asVariable) {
626626
checkSourceLevel(Feature.UNNAMED_VARIABLES);
627+
if (peekToken(LBRACKET)) {
628+
log.error(DiagnosticFlag.SYNTAX, token.pos, Errors.UseOfUnderscoreNotAllowedWithBrackets);
629+
}
627630
} else {
628631
if (preview.isEnabled() && Feature.UNNAMED_VARIABLES.allowedInSource(source)) {
629632
log.error(DiagnosticFlag.SYNTAX, token.pos, Errors.UseOfUnderscoreNotAllowed);

‎src/jdk.compiler/share/classes/com/sun/tools/javac/resources/compiler.properties

+3
Original file line numberDiff line numberDiff line change
@@ -3162,6 +3162,9 @@ compiler.err.use.of.underscore.not.allowed=\
31623162
as of release 21, the underscore keyword ''_'' is only allowed to declare\n\
31633163
unnamed patterns, local variables, exception parameters or lambda parameters
31643164

3165+
compiler.err.use.of.underscore.not.allowed.with.brackets=\
3166+
the underscore keyword ''_'' is not allowed to be followed by brackets
3167+
31653168
compiler.err.enum.as.identifier=\
31663169
as of release 5, ''enum'' is a keyword, and may not be used as an identifier
31673170

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
* Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved.
3+
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
*
5+
* This code is free software; you can redistribute it and/or modify it
6+
* under the terms of the GNU General Public License version 2 only, as
7+
* published by the Free Software Foundation.
8+
*
9+
* This code is distributed in the hope that it will be useful, but WITHOUT
10+
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
* version 2 for more details (a copy is included in the LICENSE file that
13+
* accompanied this code).
14+
*
15+
* You should have received a copy of the GNU General Public License version
16+
* 2 along with this work; if not, write to the Free Software Foundation,
17+
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
*
19+
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
* or visit www.oracle.com if you need additional information or have any
21+
* questions.
22+
*/
23+
24+
// key: compiler.err.use.of.underscore.not.allowed.with.brackets
25+
// key: compiler.misc.feature.unnamed.variables
26+
// key: compiler.warn.preview.feature.use.plural
27+
// options: --enable-preview -source ${jdk.version} -Xlint:preview
28+
29+
class UseOfUnderscoreNotAllowedWithBrackets {
30+
void test() {
31+
int[] _[] = new int[][]{new int[]{1}, new int[]{2}};
32+
}
33+
}

‎test/langtools/tools/javac/lambda/IdentifierTest21.out

+2-1
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,12 @@ IdentifierTest.java:145:15: compiler.err.use.of.underscore.not.allowed
2929
IdentifierTest.java:146:13: compiler.err.use.of.underscore.not.allowed
3030
IdentifierTest.java:151:15: compiler.err.use.of.underscore.not.allowed
3131
IdentifierTest.java:152:17: compiler.err.use.of.underscore.not.allowed
32+
IdentifierTest.java:158:16: compiler.err.use.of.underscore.not.allowed.with.brackets
3233
IdentifierTest.java:160:25: compiler.err.use.of.underscore.not.allowed
3334
IdentifierTest.java:169:5: compiler.err.use.of.underscore.not.allowed
3435
IdentifierTest.java:173:26: compiler.err.use.of.underscore.not.allowed
3536
IdentifierTest.java:175:19: compiler.err.use.of.underscore.not.allowed
3637
IdentifierTest.java:181:11: compiler.err.use.of.underscore.not.allowed
3738
- compiler.note.preview.filename: IdentifierTest.java, DEFAULT
3839
- compiler.note.preview.recompile
39-
36 errors
40+
37 errors

‎test/langtools/tools/javac/patterns/UnnamedErrors.java

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @test /nodynamiccopyright/
3-
* @bug 8304246
3+
* @bug 8304246 8309093
44
* @summary Compiler Implementation for Unnamed patterns and variables
55
* @enablePreview
66
* @compile/fail/ref=UnnamedErrors.out -XDrawDiagnostics -XDshould-stop.at=FLOW UnnamedErrors.java
@@ -106,6 +106,11 @@ void testUnderscoreWithoutInitializer() {
106106
}
107107
}
108108

109+
void testUnderscoreWithBrackets() {
110+
int _[] = new int[]{1};
111+
for (int _[] : new int[][]{new int[]{1}, new int[]{2}}) { }
112+
}
113+
109114
class Lock implements AutoCloseable {
110115
@Override
111116
public void close() {}

‎test/langtools/tools/javac/patterns/UnnamedErrors.out

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ UnnamedErrors.java:82:58: compiler.err.expected: ';'
2121
UnnamedErrors.java:101:14: compiler.err.expected: =
2222
UnnamedErrors.java:102:22: compiler.err.expected: =
2323
UnnamedErrors.java:104:26: compiler.err.expected: =
24+
UnnamedErrors.java:110:13: compiler.err.use.of.underscore.not.allowed.with.brackets
25+
UnnamedErrors.java:111:18: compiler.err.use.of.underscore.not.allowed.with.brackets
2426
UnnamedErrors.java:11:17: compiler.err.already.defined: kindname.variable, x, kindname.class, UnnamedErrors
2527
UnnamedErrors.java:36:13: compiler.err.unconditional.pattern.and.default
2628
UnnamedErrors.java:45:18: compiler.err.pattern.dominated
@@ -32,4 +34,4 @@ UnnamedErrors.java:83:13: compiler.err.switch.mixing.case.types
3234
UnnamedErrors.java:90:30: compiler.err.pattern.dominated
3335
- compiler.note.preview.filename: UnnamedErrors.java, DEFAULT
3436
- compiler.note.preview.recompile
35-
32 errors
37+
34 errors

0 commit comments

Comments
 (0)
Please sign in to comment.