-
Notifications
You must be signed in to change notification settings - Fork 588
/
syntax_test_java.java
258 lines (229 loc) · 10.6 KB
/
syntax_test_java.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// SYNTAX TEST "Packages/Java/Java.sublime-syntax"
package apple;
// <- source.java meta.package.java keyword.other.package.java
// ^ meta.package.java support.other.package.java
// ^ meta.package.java punctuation.terminator.java
import a.b.Class;
// <- meta.import.java keyword.other.import.java
// ^ meta.import.java support.class.import.java
// ^ meta.import.java punctuation.terminator.java
import static a.b.Class.fooMethod;
// <- meta.import.java keyword.other.import.java
// ^ meta.import.java storage.modifier.static.java
// ^ meta.import.java support.function.import.java
// ^ meta.import.java punctuation.terminator.java
public class SyntaxTest {
//^^^^^^^^^^^^^^^^^^^^^^^ meta.class
// ^^^ storage.modifier.java
// ^^^^^ storage.type.java
// ^^^^^^^^^^ meta.class.identifier entity.name.class.java
// ^ - meta.class.identifier.java - meta.class.body.java
// ^ meta.class.body.java
private String memberString = "Hello";
private String memberString2 = new String("Hello");
// ^^^^^^ support.class.java
private String memberString3 = String.valueOf("Hello");
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ - meta.assignment.rhs.java
// ^^^^^^^ storage.modifier.java
// ^^^^^^ support.class.java
// ^ keyword.operator.assignment.java
// ^^^^^^^^^^^^^^^^^^^^^^^^ meta.assignment.rhs.java
// ^^^^^^^ string.quoted.double.java
// ^ punctuation.definition.string.begin.java
// ^ punctuation.definition.string.end.java
// ^ - string.quoted.double.java
// ^ punctuation.terminator.java - meta.assignment.rhs.java
private int memberLpos = memberString3.indexOf("l");
// ^^^ storage.type
// ^ punctuation.terminator.java
public static void main(String... args) {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.method
// ^^^^^^ storage.modifier.java
// ^^^^^^ storage.modifier.java
// ^^^^ meta.method.return-type storage.type
// ^^^^ meta.method.identifier.java entity.name.function.java
// ^^^^^^^^^^^^^^^^ meta.method.parameters.java
// ^ punctuation.section.parens.begin.java
// ^^^^^ support.class.java
// ^^^^ variable.parameter.java
// ^ punctuation.section.parens.end.java
// ^ - meta.method.parameters
// ^^ meta.method.body.java
String[] strings = new String[5];
// ^^^^^^^^^^^^^^ meta.assignment.rhs.java
// ^^^ keyword.control.new.java
// ^ constant.numeric.java
printList(Arrays.stream(args)
.collect(Collectors.toCollection(ArrayList::new)));
// ^^^ meta.method.body.java - keyword.control.new.java
// ^^^ variable.function.reference.java
// ^^ punctuation.accessor.double-colon.java
anotherMethod();
try (Stream<String> lines = Files.lines(path)) {
// ^^^ keyword.control.catch-exception.java
// ^^^^^^^^^^^^^^^^^^ meta.assignment.rhs.java
// ^ meta.method.body.java - meta.assignment.rhs.java
lines.forEach(System.out::println);
// ^^^^^^^ variable.function.reference.java
}
for (int i = 0; i < 10; i+= 2) {
// ^^^ keyword.control
// ^^^ storage.type
// ^ keyword.operator.assignment.java
// ^ constant.numeric.java
// ^^ meta.assignment.rhs.java
// ^ punctuation.terminator.java - meta.assignment.rhs.java
// ^ keyword.operator.comparison.java
// ^^ constant.numeric.java
// ^ punctuation.terminator.java
// ^ keyword.operator.arithmetic.java
// ^ keyword.operator.assignment.java
// ^^ meta.assignment.rhs.java
// ^ - meta.assignment.rhs.java
System.out.println(i);
}
}
private static void printList(List<String> args) {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.method
// ^^^^^^^ storage.modifier.java
// ^^^^^^ storage.modifier.java
// ^^^^ meta.method.return-type storage.type
// ^^^^^^^^^ meta.method.identifier entity.name.function.java
// ^^^^^^^^^^^^^^^^^^^ meta.method.parameters
// ^^^^^^ support.type.java
// ^^^^ variable.parameter.java
// ^^ - meta.method.identifier.java
// ^^ meta.method.body.java
args.stream().forEach(System.out::println);
// ^^ punctuation.accessor.double-colon.java
}
private static void anotherMethod() throws MyException<Abc> {
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.method
// ^^^^^^^ storage.modifier.java
// ^^^^^^ storage.modifier.java
// ^^^^ meta.method.return-type.java storage.type
// ^^^^^^^^^^^^^ meta.method.identifier entity.name.function.java
// ^^ meta.method.parameters
// ^^^^^^^^^^^^^^^^^^^^^^^ meta.method.throws
// ^^^^^^ storage.modifier.java
// ^^^^^ meta.generic.java
// ^ - meta.method.throws
// ^^ meta.method.body.java
throw new MyException
("hello (world)");
// ^ - string
}
<T> void save(T obj);
// ^^^^^^^^^^^^^^^^^^^^ meta.method
// ^^^ meta.generic
// ^^^^ meta.method.return-type
// ^^^^ meta.method.identifier
// ^^^^^^^ meta.method.parameters
}
class ExtendsTest extends Foo {}
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.class
// ^^^^^^^^^^^ meta.class.extends
// ^^^^^^^ keyword.declaration.extends.java
// ^^^ entity.other.inherited-class.java
// ^ - meta.class.extends
class ExtendsTest implements Foo {}
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.class
// ^^^^^^^^^^^^^^ meta.class.implements
// ^^^^^^^^^^ keyword.declaration.implements.java
// ^^^ entity.other.inherited-class.java
// ^ - meta.class.implements
class Foo<A> extends Bar<? extends A> {}
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.class
// ^^^ meta.generic.java
// ^ support.type.java
// ^^^^^^^^^^^^^^^^^^^^^^^^ meta.class.extends
// ^^^^^^^ keyword.declaration.extends.java
class AnyClass {
// ^^^^^^^^ entity.name.class.java
int bar; // this comment() is recognized as code
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ comment.line
// ^^ punctuation.definition.comment.java
public void anyMethod(String finality){
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ meta.method
// ^^^^^^^^^ meta.method.identifier
// ^^^^^^^^^^^^^^^^^ meta.method.parameters
// ^^^^^^^^ variable.parameter - storage.modifier
// ^^ meta.method.body.java - meta.method.identifier.java
System.out.println("Printed: " + finality);
// ^ keyword.operator
}
public abstract <A> void test(A thing);
// ^^^ meta.generic.java
// ^ support.type.java
public void test2(Type) abc
// ^^^ - variable.parameter
}
public enum FooBaz {
// ^^^^ storage.type.java
//^^^^^^^^^^^^^^^^^^ meta.class
// ^^^^^^ meta.class.identifier.java entity.name.class.java
// ^ meta.class.body
// This is a test
// ^^^^^^^^^^^^^^^^^^ comment.line
UPLOAD("foo bar"), /* This a comment */
// ^^^^^^ constant.other.enum
// ^^^^^^^^^ string.quoted.double.java
// ^^^^^^^^^^^^^^^^^^^^ comment.block
// ^ - comment.block
DELETE("baz"),
// ^^^^^^ constant.other.enum
// Comment here
// ^^^^^^^^^^^^^^^^ comment.line
}
class InvalidStuff
{
goto
// ^^^^ invalid.illegal
const int 3;
// ^^^^^ invalid.illegal
}
volatile
// ^^^^^^^^ storage.modifier.java
foo();
// ^^^ variable.function.java
Foo();
// ^^^ variable.function.java
foo ();
// ^^^ variable.function.java
foo<A>();
// ^^^ variable.function.java
foo <B>();
// ^^^ variable.function.java
a -> 42;
// ^ variable.parameter.java
// ^^ storage.type.lambda.java
// ^^ constant.numeric
a -> { return 42; };
// ^^^^^^^^^^^^^^ meta.lambda.body.java
(a, b) -> 42;
// ^ variable.parameter.java
// ^ variable.parameter.java
// ^^ storage.type.lambda.java
// ^^ constant.numeric
(int a, Foo<Integer>[] b) -> 42;
// ^^^ storage.type.primitive
// ^ variable.parameter.java
// ^^^ support.class.java
// ^ variable.parameter.java
// ^^ storage.type.lambda.java
// ^^ constant.numeric
new Foo<Abc>();
// ^^^^^ meta.generic.java
// ^^^ support.type.java
// ^ punctuation.definition.generic.begin.java
// ^ punctuation.definition.generic.end.java
new Foo<?>();
// ^ keyword.operator.wildcard.java
new Foo<? extends Bar>();
// ^ keyword.operator.wildcard.java
// ^^^^^^^ keyword.declaration.extends.java
new Foo<? super Bar>();
// ^ keyword.operator.wildcard.java
// ^^^^^ keyword.declaration.extends.java
new Foo<int>();
// ^^^ invalid.illegal.primitive-instantiation.java