1 | Compile Error. ---------- |
2 | 1. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 330) |
3 | return has_multi(quotedAndUnquoted(s), "is", ai_isWord_helper); |
4 | ^^^^^^^^^ |
5 | The method has_multi(List<String>, List<String>, List<String>) in the type main is not applicable for the arguments (List<String>, String, List<String>) |
6 | ---------- |
7 | 2. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 390) |
8 | static boolean has_multi(List<String> a, b, List<String> c) { |
9 | ^ |
10 | Syntax error, insert "... VariableDeclaratorId" to complete FormalParameter |
11 | ---------- |
12 | 3. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
13 | Map.Entry e; |
14 | ^ |
15 | Syntax error, insert "else Statement" to complete IfStatement |
16 | ---------- |
17 | 4. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
18 | Map.Entry e; |
19 | ^ |
20 | Syntax error, insert "}" to complete Statement |
21 | ---------- |
22 | 5. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
23 | Map.Entry e; |
24 | ^ |
25 | Syntax error, insert ";" to complete Statement |
26 | ---------- |
27 | 6. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
28 | Map.Entry e; |
29 | ^ |
30 | Syntax error, insert ")" to complete Expression |
31 | ---------- |
32 | 7. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
33 | Map.Entry e; |
34 | ^ |
35 | Syntax error, insert "}" to complete ClassBody |
36 | ---------- |
37 | 8. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
38 | Map.Entry e; |
39 | ^ |
40 | Syntax error, insert "}" to complete Statement |
41 | ---------- |
42 | 9. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
43 | Map.Entry e; |
44 | ^ |
45 | Syntax error, insert "}" to complete MethodBody |
46 | ---------- |
47 | 10. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4518) |
48 | Map.Entry e; |
49 | ^ |
50 | Syntax error, insert "else Statement" to complete IfStatement |
51 | ---------- |
52 | 11. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4520) |
53 | public void run() { |
54 | ^^^^^ |
55 | Duplicate method run() in type main |
56 | ---------- |
57 | 12. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4537) |
58 | } |
59 | }); |
60 | ^^^^^^^^^^^ |
61 | Syntax error on tokens, delete these tokens |
62 | ---------- |
63 | 13. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4540) |
64 | } |
65 | ^ |
66 | Syntax error on token "}", delete this token |
67 | ---------- |
68 | 14. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4547) |
69 | final int n = Array.getLength(o); |
70 | ^ |
71 | o cannot be resolved to a variable |
72 | ---------- |
73 | 15. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4550) |
74 | String hex = boolArrayToHex((boolean[]) o); |
75 | ^ |
76 | o cannot be resolved to a variable |
77 | ---------- |
78 | 16. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4553) |
79 | d.append("boolarray ").append(n).app(" ").append(quote(substring(hex, 0, i))); return; |
80 | ^ |
81 | d cannot be resolved |
82 | ---------- |
83 | 17. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4556) |
84 | String atype = "array", sep = ", "; |
85 | ^ |
86 | Syntax error on token ";", { expected after this token |
87 | ---------- |
88 | 18. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4577) |
89 | return; |
90 | ^ |
91 | Syntax error, insert "}" to complete Statement |
92 | ---------- |
93 | 19. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4578) |
94 | } |
95 | ^ |
96 | Syntax error on token "}", { expected after this token |
97 | ---------- |
98 | 20. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4580) |
99 | if (o instanceof Class) { |
100 | d.append("class(", 2).append(quote(((Class) o).getName())).append(")"); return; |
101 | } |
102 | |
103 | if (o instanceof Throwable) { |
104 | d.append("exception(", 2).append(quote(((Throwable) o).getMessage())).append(")"); return; |
105 | } |
106 | |
107 | if (o instanceof BitSet) { |
108 | BitSet bs = (BitSet) o; |
109 | d.append("bitset{", 2); |
110 | int l = d.n; |
111 | for (int i = bs.nextSetBit(0); i >= 0; i = bs.nextSetBit(i+1)) { |
112 | if (d.n != l) d.append(", "); |
113 | d.append(i); |
114 | } |
115 | d.append("}"); return; |
116 | } |
117 | |
118 | // Need more cases? This should cover all library classes... |
119 | if (name.startsWith("java.") || name.startsWith("javax.")) { |
120 | d.append("j ").append(quote(str(o))); return; // Hm. this is not unstructure-able |
121 | } |
122 | |
123 | |
124 | if (o instanceof Lisp) { |
125 | d.append("l(", 2); |
126 | final Lisp lisp = (Lisp) ( o); |
127 | structure_1(lisp.head, d); |
128 | final Iterator it = lisp.args == null ? emptyIterator() : lisp.args.iterator(); |
129 | d.stack.add(new Runnable() { public void run() { try { |
130 | if (!it.hasNext()) |
131 | d.append(")"); |
132 | else { |
133 | d.stack.add(this); |
134 | d.append(", "); |
135 | structure_1(it.next(), d); |
136 | } |
137 | |
138 | } catch (Exception __e) { throw rethrow(__e); } } public String toString() { return "if (!it.hasNext())\r\n d.append(\")\");\r\n else {\r\n ..."; }}); |
139 | return; |
140 | } |
141 | |
142 | |
143 | /*if (name.equals("main$Lisp")) { |
144 | fail("lisp not supported right now"); |
145 | }*/ |
146 | |
147 | String dynName = shortDynamicClassName(o); |
148 | if (concept && !d.concepts.contains(dynName)) { |
149 | d.concepts.add(dynName); |
150 | d.append("c "); |
151 | } |
152 | |
153 | // serialize an object with fields. |
154 | // first, collect all fields and values in fv. |
155 | |
156 | TreeSet<Field> fields = new TreeSet<Field>(new Comparator<Field>() { |
157 | public int compare(Field a, Field b) { |
158 | return stdcompare(a.getName(), b.getName()); |
159 | } |
160 | }); |
161 | |
162 | Class cc = c; |
163 | while (cc != Object.class) { |
164 | for (Field field : getDeclaredFields_cached(cc)) { |
165 | if ((field.getModifiers() & (java.lang.reflect.Modifier.STATIC | java.lang.reflect.Modifier.TRANSIENT)) != 0) |
166 | continue; |
167 | String fieldName = field.getName(); |
168 | |
169 | fields.add(field); |
170 | |
171 | // put special cases here... |
172 | } |
173 | |
174 | cc = cc.getSuperclass(); |
175 | } |
176 | |
177 | lFields = asList(fields); |
178 | |
179 | // Render this$1 first because unstructure needs it for constructor call. |
180 | |
181 | for (int i = 0; i < l(lFields); i++) { |
182 | Field f = lFields.get(i); |
183 | if (f.getName().equals("this$1")) { |
184 | lFields.remove(i); |
185 | lFields.add(0, f); |
186 | break; |
187 | } |
188 | } |
189 | |
190 | |
191 | d.fieldsByClass.put(c, lFields); |
192 | } // << if (lFields == null) |
193 | else { // ref handling for lFields != null |
194 | Integer ref = d.seen.get(o); |
195 | if (ref != null) { /*d.refd.set(ref);*/ d.append("t").app(ref); return; } |
196 | d.seen.put(o, d.n); // record token number |
197 | } |
198 | |
199 | LinkedHashMap<String,Object> fv = new LinkedHashMap(); |
200 | for (Field f : lFields) { |
201 | Object value; |
202 | try { |
203 | value = f.get(o); |
204 | } catch (Exception e) { |
205 | value = "?"; |
206 | } |
207 | |
208 | if (value != null) |
209 | fv.put(f.getName(), value); |
210 | |
211 | } |
212 | |
213 | String name = c.getName(); |
214 | String shortName = dropPrefix("main$", name); |
215 | |
216 | // Now we have fields & values. Process fieldValues if it's a DynamicObject. |
217 | |
218 | // omit field "className" if equal to class's name |
219 | if (concept && eq(fv.get("className"), shortName)) |
220 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
221 | Syntax error on token(s), misplaced construct(s) |
222 | ---------- |
223 | 21. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4581) |
224 | d.append("class(", 2).append(quote(((Class) o).getName())).append(")"); return; |
225 | ^ |
226 | d cannot be resolved |
227 | ---------- |
228 | 22. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4581) |
229 | d.append("class(", 2).append(quote(((Class) o).getName())).append(")"); return; |
230 | ^ |
231 | o cannot be resolved to a variable |
232 | ---------- |
233 | 23. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4585) |
234 | d.append("exception(", 2).append(quote(((Throwable) o).getMessage())).append(")"); return; |
235 | ^ |
236 | d cannot be resolved |
237 | ---------- |
238 | 24. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4585) |
239 | d.append("exception(", 2).append(quote(((Throwable) o).getMessage())).append(")"); return; |
240 | ^ |
241 | o cannot be resolved to a variable |
242 | ---------- |
243 | 25. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4589) |
244 | BitSet bs = (BitSet) o; |
245 | ^ |
246 | o cannot be resolved to a variable |
247 | ---------- |
248 | 26. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4590) |
249 | d.append("bitset{", 2); |
250 | ^ |
251 | d cannot be resolved |
252 | ---------- |
253 | 27. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4591) |
254 | int l = d.n; |
255 | ^ |
256 | d cannot be resolved to a variable |
257 | ---------- |
258 | 28. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4593) |
259 | if (d.n != l) d.append(", "); |
260 | ^ |
261 | d cannot be resolved to a variable |
262 | ---------- |
263 | 29. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4593) |
264 | if (d.n != l) d.append(", "); |
265 | ^ |
266 | d cannot be resolved |
267 | ---------- |
268 | 30. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4594) |
269 | d.append(i); |
270 | ^ |
271 | d cannot be resolved |
272 | ---------- |
273 | 31. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4596) |
274 | d.append("}"); return; |
275 | ^ |
276 | d cannot be resolved |
277 | ---------- |
278 | 32. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4601) |
279 | d.append("j ").append(quote(str(o))); return; // Hm. this is not unstructure-able |
280 | ^ |
281 | d cannot be resolved |
282 | ---------- |
283 | 33. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4601) |
284 | d.append("j ").append(quote(str(o))); return; // Hm. this is not unstructure-able |
285 | ^ |
286 | o cannot be resolved to a variable |
287 | ---------- |
288 | 34. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4606) |
289 | d.append("l(", 2); |
290 | ^ |
291 | d cannot be resolved |
292 | ---------- |
293 | 35. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4607) |
294 | final Lisp lisp = (Lisp) ( o); |
295 | ^ |
296 | o cannot be resolved to a variable |
297 | ---------- |
298 | 36. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4608) |
299 | structure_1(lisp.head, d); |
300 | ^ |
301 | d cannot be resolved to a variable |
302 | ---------- |
303 | 37. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4610) |
304 | d.stack.add(new Runnable() { public void run() { try { |
305 | ^ |
306 | d cannot be resolved |
307 | ---------- |
308 | 38. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4612) |
309 | d.append(")"); |
310 | ^ |
311 | d cannot be resolved |
312 | ---------- |
313 | 39. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4614) |
314 | d.stack.add(this); |
315 | ^ |
316 | d cannot be resolved |
317 | ---------- |
318 | 40. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4615) |
319 | d.append(", "); |
320 | ^ |
321 | d cannot be resolved |
322 | ---------- |
323 | 41. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4616) |
324 | structure_1(it.next(), d); |
325 | ^ |
326 | d cannot be resolved to a variable |
327 | ---------- |
328 | 42. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4628) |
329 | String dynName = shortDynamicClassName(o); |
330 | ^ |
331 | o cannot be resolved to a variable |
332 | ---------- |
333 | 43. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4630) |
334 | d.concepts.add(dynName); |
335 | ^ |
336 | d cannot be resolved |
337 | ---------- |
338 | 44. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4631) |
339 | d.append("c "); |
340 | ^ |
341 | d cannot be resolved |
342 | ---------- |
343 | 45. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4643) |
344 | Class cc = c; |
345 | ^ |
346 | Cannot reference a field before it is defined |
347 | ---------- |
348 | 46. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4658) |
349 | lFields = asList(fields); |
350 | |
351 | // Render this$1 first because unstructure needs it for constructor call. |
352 | |
353 | for (int i = 0; i < l(lFields); i++) { |
354 | Field f = lFields.get(i); |
355 | if (f.getName().equals("this$1")) { |
356 | lFields.remove(i); |
357 | lFields.add(0, f); |
358 | break; |
359 | } |
360 | } |
361 | |
362 | |
363 | d.fieldsByClass.put(c, lFields); |
364 | } // << if (lFields == null) |
365 | else { // ref handling for lFields != null |
366 | Integer ref = d.seen.get(o); |
367 | if (ref != null) { /*d.refd.set(ref);*/ d.append("t").app(ref); return; } |
368 | d.seen.put(o, d.n); // record token number |
369 | } |
370 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
371 | Syntax error on token(s), misplaced construct(s) |
372 | ---------- |
373 | 47. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4658) |
374 | lFields = asList(fields); |
375 | ^^^^^^^ |
376 | Return type for the method is missing |
377 | ---------- |
378 | 48. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4658) |
379 | lFields = asList(fields); |
380 | ^^^^^^ |
381 | Syntax error, insert "... VariableDeclaratorId" to complete FormalParameterList |
382 | ---------- |
383 | 49. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4658) |
384 | lFields = asList(fields); |
385 | ^ |
386 | Syntax error on token ")", { expected after this token |
387 | ---------- |
388 | 50. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4674) |
389 | else { // ref handling for lFields != null |
390 | ^^^^ |
391 | Syntax error on token "else", { expected |
392 | ---------- |
393 | 51. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4675) |
394 | Integer ref = d.seen.get(o); |
395 | ^ |
396 | d cannot be resolved |
397 | ---------- |
398 | 52. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4675) |
399 | Integer ref = d.seen.get(o); |
400 | ^ |
401 | o cannot be resolved to a variable |
402 | ---------- |
403 | 53. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4676) |
404 | if (ref != null) { /*d.refd.set(ref);*/ d.append("t").app(ref); return; } |
405 | ^ |
406 | d cannot be resolved |
407 | ---------- |
408 | 54. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4677) |
409 | d.seen.put(o, d.n); // record token number |
410 | ^ |
411 | d cannot be resolved |
412 | ---------- |
413 | 55. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4677) |
414 | d.seen.put(o, d.n); // record token number |
415 | ^ |
416 | o cannot be resolved to a variable |
417 | ---------- |
418 | 56. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4677) |
419 | d.seen.put(o, d.n); // record token number |
420 | ^ |
421 | d cannot be resolved to a variable |
422 | ---------- |
423 | 57. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4684) |
424 | value = f.get(o); |
425 | ^ |
426 | o cannot be resolved to a variable |
427 | ---------- |
428 | 58. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4694) |
429 | String name = c.getName(); |
430 | ^ |
431 | Cannot reference a field before it is defined |
432 | ---------- |
433 | 59. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4700) |
434 | if (concept && eq(fv.get("className"), shortName)) |
435 | ^^^ |
436 | Return type for the method is missing |
437 | ---------- |
438 | 60. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4700) |
439 | if (concept && eq(fv.get("className"), shortName)) |
440 | ^^^^^^ |
441 | Syntax error on tokens, AnnotationName expected instead |
442 | ---------- |
443 | 61. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4700) |
444 | if (concept && eq(fv.get("className"), shortName)) |
445 | ^ |
446 | Syntax error on token ",", byte expected |
447 | ---------- |
448 | 62. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4700) |
449 | if (concept && eq(fv.get("className"), shortName)) |
450 | ^ |
451 | Syntax error on token ")", { expected |
452 | ---------- |
453 | 63. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
454 | q.add(new Runnable() { public void run() { try { |
455 | ^ |
456 | Syntax error, insert "}" to complete Statement |
457 | ---------- |
458 | 64. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
459 | q.add(new Runnable() { public void run() { try { |
460 | ^ |
461 | Syntax error, insert "else Statement" to complete IfStatement |
462 | ---------- |
463 | 65. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
464 | q.add(new Runnable() { public void run() { try { |
465 | ^ |
466 | Syntax error, insert "Finally" to complete BlockStatements |
467 | ---------- |
468 | 66. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
469 | q.add(new Runnable() { public void run() { try { |
470 | ^ |
471 | Syntax error, insert "}" to complete MethodBody |
472 | ---------- |
473 | 67. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
474 | q.add(new Runnable() { public void run() { try { |
475 | ^ |
476 | Syntax error, insert "}" to complete Block |
477 | ---------- |
478 | 68. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
479 | q.add(new Runnable() { public void run() { try { |
480 | ^ |
481 | Syntax error, insert "}" to complete Block |
482 | ---------- |
483 | 69. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
484 | q.add(new Runnable() { public void run() { try { |
485 | ^ |
486 | Syntax error, insert ";" to complete Statement |
487 | ---------- |
488 | 70. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
489 | q.add(new Runnable() { public void run() { try { |
490 | ^ |
491 | Syntax error, insert ")" to complete Expression |
492 | ---------- |
493 | 71. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
494 | q.add(new Runnable() { public void run() { try { |
495 | ^ |
496 | Syntax error, insert "}" to complete ClassBody |
497 | ---------- |
498 | 72. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4766) |
499 | q.add(new Runnable() { public void run() { try { |
500 | ^^^^^ |
501 | Duplicate method run() in type main |
502 | ---------- |
503 | 73. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4767) |
504 | m.put(clone_impl(e.getKey(), seen, q), clone_impl(e.getValue(), seen, q)) |
505 | ^ |
506 | e cannot be resolved |
507 | ---------- |
508 | 74. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4769) |
509 | } catch (Exception __e) { throw rethrow(__e); } } public String toString() { return "m.put(clone_impl(e.getKey(), seen, q), clone_impl(e.getValue(), seen, q))"; }}); |
510 | ^ |
511 | Syntax error on token "}", invalid ConstructorHeaderName |
512 | ---------- |
513 | 75. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4770) |
514 | } |
515 | ^ |
516 | Syntax error on token "}", { expected |
517 | ---------- |
518 | 76. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4772) |
519 | } |
520 | ^ |
521 | Syntax error on token "}", { expected after this token |
522 | ---------- |
523 | 77. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4777) |
524 | final Object[] l = (Object[]) o; |
525 | ^ |
526 | o cannot be resolved to a variable |
527 | ---------- |
528 | 78. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4782) |
529 | q.add(new Runnable() { public void run() { try { l2[_i] = clone_impl(l[_i], seen, q) ; |
530 | ^ |
531 | q cannot be resolved |
532 | ---------- |
533 | 79. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4782) |
534 | q.add(new Runnable() { public void run() { try { l2[_i] = clone_impl(l[_i], seen, q) ; |
535 | ^^^^ |
536 | seen cannot be resolved to a variable |
537 | ---------- |
538 | 80. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4791) |
539 | final Object clone = nuObjectWithoutArguments(o.getClass()); |
540 | ^ |
541 | o cannot be resolved |
542 | ---------- |
543 | 81. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4793) |
544 | Class c = o.getClass(); |
545 | ^ |
546 | o cannot be resolved |
547 | ---------- |
548 | 82. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4800) |
549 | final Object value = field.get(o); |
550 | ^ |
551 | o cannot be resolved to a variable |
552 | ---------- |
553 | 83. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4801) |
554 | q.add(new Runnable() { public void run() { try { field.set(clone, clone_impl(value, seen, q)) ; |
555 | ^ |
556 | q cannot be resolved |
557 | ---------- |
558 | 84. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4801) |
559 | q.add(new Runnable() { public void run() { try { field.set(clone, clone_impl(value, seen, q)) ; |
560 | ^^^^ |
561 | seen cannot be resolved to a variable |
562 | ---------- |
563 | 85. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4807) |
564 | } catch (Exception __e) { throw rethrow(__e); } } |
565 | ^^^^^ |
566 | Syntax error on token "catch", Identifier expected |
567 | ---------- |
568 | 86. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 4807) |
569 | } catch (Exception __e) { throw rethrow(__e); } } |
570 | ^ |
571 | Syntax error on token "}", delete this token |
572 | ---------- |
573 | 87. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7505) |
574 | } // if v else |
575 | ^ |
576 | Syntax error, insert "}" to complete MethodBody |
577 | ---------- |
578 | 88. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7505) |
579 | } // if v else |
580 | ^ |
581 | Syntax error, insert "}" to complete MethodBody |
582 | ---------- |
583 | 89. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7505) |
584 | } // if v else |
585 | ^ |
586 | Syntax error, insert "}" to complete ClassBody |
587 | ---------- |
588 | 90. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7505) |
589 | } // if v else |
590 | ^ |
591 | Syntax error, insert ";" to complete Statement |
592 | ---------- |
593 | 91. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7505) |
594 | } // if v else |
595 | ^ |
596 | Syntax error, insert "}" to complete ClassBody |
597 | ---------- |
598 | 92. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7505) |
599 | } // if v else |
600 | ^ |
601 | Syntax error, insert ")" to complete Expression |
602 | ---------- |
603 | 93. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7507) |
604 | }); |
605 | ^ |
606 | Syntax error on token "}", delete this token |
607 | ---------- |
608 | 94. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7507) |
609 | }); |
610 | ^ |
611 | Syntax error on token ")", { expected |
612 | ---------- |
613 | 95. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7517) |
614 | void consume() { curT = tok.next(); ++i; } |
615 | ^^^^ |
616 | curT cannot be resolved to a variable |
617 | ---------- |
618 | 96. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7520) |
619 | if (!eq(t(), s)) { |
620 | ^ |
621 | The method t() is undefined for the type main |
622 | ---------- |
623 | 97. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7534) |
624 | } |
625 | ^ |
626 | Syntax error on token "}", { expected |
627 | ---------- |
628 | 98. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7541) |
629 | X x = new X(); |
630 | ^ |
631 | X cannot be resolved to a type |
632 | ---------- |
633 | 99. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7541) |
634 | X x = new X(); |
635 | ^ |
636 | X cannot be resolved to a type |
637 | ---------- |
638 | 100. ERROR in /home/stefan/.javax/1512750642385/main.java (at line 7547) |
639 | } finally { |
640 | ^^^^^^^ |
641 | Syntax error on token "finally", { expected |
642 | ---------- |
643 | 100 problems (100 errors) |
644 | java.lang.RuntimeException: java.lang.reflect.InvocationTargetException |
Snippet is not live.
Travelled to 12 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #3000472 |
Snippet name: | Smart Bot's answer to: !fresh ai_splitCompoundWord1("headless") |
Eternal ID of this version: | #3000472/1 |
Text MD5: | 56f8bc7cba11fbb3b524470f2bf439af |
Author: | someone |
Category: | |
Type: | New Tinybrain snippet |
Gummipassword: | smart-bot-for-user |
Uploaded from IP: | 188.97.121.29 |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2017-12-08 17:30:48 |
Source code size: | 26834 bytes / 644 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 400 / 123 |
Referenced in: | [show references] |