Commit d8d80c4
committed
Upgrade to Scala 2.13.4, switch CI to JDK 15
2.13.4 brings JDK 15 support with
scala/scala#9292
- tests/run/t8153.scala was removed like it was removed in Scala 2 with
scala/scala@8f6e522
- tests/neg/missing-implicit-2.check was updated because the
implicitNotFound message was changed in 2.13.4
- tests/run/t6260-delambdafy.scala had to be changed to behave the same
under JDK <= 15 and JDK 15.1 parent 37b4271 commit d8d80c4
File tree
15 files changed
+38
-51
lines changed- .github/workflows
- community-build
- community-projects
- src/scala/dotty/communitybuild
- compiler/src/dotty/tools/dotc
- core
- typer
- project
- sbt-dotty/sbt-test/scala2-compat
- i8847
- i9916a
- i9916b
- tests
- neg
- run
15 files changed
+38
-51
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | | - | |
26 | | - | |
| 25 | + | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
45 | 45 | | |
46 | 46 | | |
47 | 47 | | |
48 | | - | |
| 48 | + | |
49 | 49 | | |
50 | 50 | | |
51 | 51 | | |
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
58 | | - | |
| 57 | + | |
| 58 | + | |
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
| |||
110 | 110 | | |
111 | 111 | | |
112 | 112 | | |
113 | | - | |
| 113 | + | |
114 | 114 | | |
115 | 115 | | |
116 | 116 | | |
| |||
138 | 138 | | |
139 | 139 | | |
140 | 140 | | |
141 | | - | |
| 141 | + | |
142 | 142 | | |
143 | 143 | | |
144 | 144 | | |
| |||
166 | 166 | | |
167 | 167 | | |
168 | 168 | | |
169 | | - | |
| 169 | + | |
170 | 170 | | |
171 | 171 | | |
172 | 172 | | |
| |||
196 | 196 | | |
197 | 197 | | |
198 | 198 | | |
199 | | - | |
| 199 | + | |
200 | 200 | | |
201 | 201 | | |
202 | 202 | | |
| |||
231 | 231 | | |
232 | 232 | | |
233 | 233 | | |
234 | | - | |
| 234 | + | |
235 | 235 | | |
236 | 236 | | |
237 | 237 | | |
| |||
265 | 265 | | |
266 | 266 | | |
267 | 267 | | |
268 | | - | |
| 268 | + | |
269 | 269 | | |
270 | 270 | | |
271 | 271 | | |
| |||
306 | 306 | | |
307 | 307 | | |
308 | 308 | | |
309 | | - | |
| 309 | + | |
310 | 310 | | |
311 | 311 | | |
312 | 312 | | |
| |||
388 | 388 | | |
389 | 389 | | |
390 | 390 | | |
391 | | - | |
| 391 | + | |
392 | 392 | | |
393 | 393 | | |
394 | 394 | | |
| |||
432 | 432 | | |
433 | 433 | | |
434 | 434 | | |
435 | | - | |
| 435 | + | |
436 | 436 | | |
437 | 437 | | |
438 | 438 | | |
| |||
Submodule scala-parser-combinators updated 34 files
- .travis.yml+6-9
- README.md+6-4
- build.sbt+57-18
- build.sh+8-8
- docs/Getting_Started.md+1-1
- jvm/src/main/scala/scala/util/parsing/input/PositionCache.scala-3
- project/build.properties+1-1
- project/plugins.sbt+3-3
- shared/src/main/scala/scala/util/parsing/combinator/ImplicitConversions.scala-4
- shared/src/main/scala/scala/util/parsing/combinator/JavaTokenParsers.scala-1
- shared/src/main/scala/scala/util/parsing/combinator/PackratParsers.scala+3-5
- shared/src/main/scala/scala/util/parsing/combinator/Parsers.scala+66-35
- shared/src/main/scala/scala/util/parsing/combinator/RegexParsers.scala+3-2
- shared/src/main/scala/scala/util/parsing/combinator/lexical/Lexical.scala-2
- shared/src/main/scala/scala/util/parsing/combinator/lexical/Scanners.scala-2
- shared/src/main/scala/scala/util/parsing/combinator/lexical/StdLexical.scala-5
- shared/src/main/scala/scala/util/parsing/combinator/syntactical/StandardTokenParsers.scala-2
- shared/src/main/scala/scala/util/parsing/combinator/syntactical/StdTokenParsers.scala-2
- shared/src/main/scala/scala/util/parsing/combinator/syntactical/TokenParsers.scala-3
- shared/src/main/scala/scala/util/parsing/combinator/token/StdTokens.scala-3
- shared/src/main/scala/scala/util/parsing/combinator/token/Tokens.scala-3
- shared/src/main/scala/scala/util/parsing/input/CharArrayReader.scala+2-11
- shared/src/main/scala/scala/util/parsing/input/CharSequenceReader.scala-4
- shared/src/main/scala/scala/util/parsing/input/NoPosition.scala-3
- shared/src/main/scala/scala/util/parsing/input/OffsetPosition.scala-2
- shared/src/main/scala/scala/util/parsing/input/PagedSeq.scala-1
- shared/src/main/scala/scala/util/parsing/input/PagedSeqReader.scala+1-6
- shared/src/main/scala/scala/util/parsing/input/Position.scala-3
- shared/src/main/scala/scala/util/parsing/input/Positional.scala-2
- shared/src/main/scala/scala/util/parsing/input/Reader.scala-3
- shared/src/main/scala/scala/util/parsing/input/StreamReader.scala-5
- shared/src/test/scala/scala/util/parsing/combinator/JavaTokenParsersTest.scala+4-4
- shared/src/test/scala/scala/util/parsing/combinator/RegexParsersTest.scala+67
- shared/src/test/scala/scala/util/parsing/combinator/t7483.scala+1-1
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
297 | 297 | | |
298 | 298 | | |
299 | 299 | | |
300 | | - | |
| 300 | + | |
301 | 301 | | |
302 | 302 | | |
303 | 303 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| 5 | + | |
5 | 6 | | |
6 | 7 | | |
7 | 8 | | |
| |||
32 | 33 | | |
33 | 34 | | |
34 | 35 | | |
35 | | - | |
| 36 | + | |
36 | 37 | | |
| 38 | + | |
37 | 39 | | |
38 | 40 | | |
39 | | - | |
40 | | - | |
| 41 | + | |
| 42 | + | |
41 | 43 | | |
42 | 44 | | |
43 | | - | |
44 | | - | |
45 | | - | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
46 | 48 | | |
47 | 49 | | |
48 | 50 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
724 | 724 | | |
725 | 725 | | |
726 | 726 | | |
727 | | - | |
| 727 | + | |
728 | 728 | | |
729 | 729 | | |
730 | 730 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
76 | | - | |
| 75 | + | |
| 76 | + | |
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
0 commit comments