Skip to content

Commit 2bf1863

Browse files
biboudislahodaj
authored andcommittedOct 17, 2023
8315588: JShell does not accept underscore from JEP 443 even with --enable-preview
Reviewed-by: jlahoda
1 parent 15588e0 commit 2bf1863

File tree

2 files changed

+80
-2
lines changed

2 files changed

+80
-2
lines changed
 

‎src/jdk.jshell/share/classes/jdk/jshell/CompletenessAnalyzer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ static enum TK {
190190
EOF(TokenKind.EOF, 0), //
191191
ERROR(TokenKind.ERROR, XERRO), //
192192
IDENTIFIER(TokenKind.IDENTIFIER, XEXPR1|XDECL1|XTERM), //
193-
UNDERSCORE(TokenKind.UNDERSCORE, XERRO), // _
193+
UNDERSCORE(TokenKind.UNDERSCORE, XDECL1), // _
194194
CLASS(TokenKind.CLASS, XEXPR|XDECL1|XBRACESNEEDED), // class decl (MAPPED: DOTCLASS)
195195
MONKEYS_AT(TokenKind.MONKEYS_AT, XEXPR|XDECL1), // @
196196
IMPORT(TokenKind.IMPORT, XDECL1|XSTART), // import -- consider declaration

‎test/langtools/jdk/jshell/UnnamedTest.java

+79-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 9999999
26+
* @bug 8315851 8315588
2727
* @summary Tests for unnamed variables
2828
* @library /tools/lib
2929
* @modules jdk.compiler/com.sun.tools.javac.api
@@ -34,12 +34,17 @@
3434
*/
3535

3636
import java.util.function.Consumer;
37+
38+
import jdk.jshell.SourceCodeAnalysis;
3739
import jdk.jshell.VarSnippet;
3840
import org.testng.Assert;
3941
import org.testng.annotations.Test;
4042

4143
import jdk.jshell.JShell;
4244

45+
import static jdk.jshell.SourceCodeAnalysis.Completeness.COMPLETE;
46+
import static jdk.jshell.SourceCodeAnalysis.Completeness.DEFINITELY_INCOMPLETE;
47+
4348
public class UnnamedTest extends KullaTesting {
4449

4550
@Test
@@ -50,6 +55,79 @@ public void unnamed() {
5055
Assert.assertEquals(getState().varValue(sn2), "\"x\"");
5156
}
5257

58+
static final String[] definitely_incomplete = new String[]{
59+
"int _ = ",
60+
"int m(String v, int r) {\n" +
61+
" try {\n" +
62+
" return Integer.parseInt(v, r);\n" +
63+
" } catch (NumberFormatException _) {",
64+
"try (final Lock _ = ",
65+
"try (Lock _ = null) {\n" +
66+
" try (Lock _ = null) {",
67+
"for (var _ : strs",
68+
"TwoParams p1 = (_, _) ->",
69+
"for (int _ = 0, _ = 1, x = 1;",
70+
"if (r instanceof R(_"
71+
};
72+
73+
static final String[] complete = new String[]{
74+
"int _ = 42;",
75+
"int m(String v, int r) {\n" +
76+
" try {\n" +
77+
" return Integer.parseInt(v, r);\n" +
78+
" } catch (NumberFormatException _) { } }",
79+
"try (final Lock _ = TEST) {}",
80+
"try (Lock _ = null) {\n" +
81+
" try (Lock _ = null) { } }",
82+
"for (var _ : strs) { }",
83+
"TwoParams p1 = (_, _) -> {};",
84+
"for (int _ = 0, _ = 1, x = 1; x <= 1 ; x++) {}",
85+
"if (r instanceof R(_)) { }"
86+
};
87+
88+
private void assertStatus(String input, SourceCodeAnalysis.Completeness status, String source) {
89+
String augSrc;
90+
switch (status) {
91+
case COMPLETE_WITH_SEMI:
92+
augSrc = source + ";";
93+
break;
94+
95+
case DEFINITELY_INCOMPLETE:
96+
augSrc = null;
97+
break;
98+
99+
case CONSIDERED_INCOMPLETE:
100+
augSrc = source + ";";
101+
break;
102+
103+
case EMPTY:
104+
case COMPLETE:
105+
case UNKNOWN:
106+
augSrc = source;
107+
break;
108+
109+
default:
110+
throw new AssertionError();
111+
}
112+
assertAnalyze(input, status, augSrc);
113+
}
114+
115+
private void assertStatus(String[] ins, SourceCodeAnalysis.Completeness status) {
116+
for (String input : ins) {
117+
assertStatus(input, status, input);
118+
}
119+
}
120+
121+
@Test
122+
public void test_definitely_incomplete() {
123+
assertStatus(definitely_incomplete, DEFINITELY_INCOMPLETE);
124+
}
125+
126+
@Test
127+
public void test_definitely_complete() {
128+
assertStatus(complete, COMPLETE);
129+
}
130+
53131
@Override
54132
public void setUp(Consumer<JShell.Builder> bc) {
55133
super.setUp(bc.andThen(b -> b.compilerOptions("--enable-preview", "--source", System.getProperty("java.specification.version"))));

0 commit comments

Comments
 (0)
Please sign in to comment.