File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
shared/src/main/scala/scala/xml Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -89,9 +89,9 @@ workflows:
89
89
java_version : jdk8
90
90
scala_version : 2.13.1
91
91
- scala_job :
92
- name : dotty-0.18
92
+ name : dotty-0.21
93
93
java_version : jdk8
94
- scala_version : 0.20 .0-RC1
94
+ scala_version : 0.21 .0-RC1
95
95
- scala_job :
96
96
name : jdk11_2.12
97
97
java_version : jdk11
@@ -103,7 +103,7 @@ workflows:
103
103
- scala_job :
104
104
name : jdk11_dotty
105
105
java_version : jdk11
106
- scala_version : 0.20 .0-RC1
106
+ scala_version : 0.21 .0-RC1
107
107
- scala_job :
108
108
name : jdk13_2.12
109
109
java_version : jdk13
@@ -115,7 +115,7 @@ workflows:
115
115
- scala_job :
116
116
name : jdk13_dotty
117
117
java_version : jdk13
118
- scala_version : 0.20 .0-RC1
118
+ scala_version : 0.21 .0-RC1
119
119
- scala_job :
120
120
name : jdk14_2.12
121
121
java_version : jdk14
@@ -127,7 +127,7 @@ workflows:
127
127
- scala_job :
128
128
name : jdk14_dotty
129
129
java_version : jdk14
130
- scala_version : 0.20 .0-RC1
130
+ scala_version : 0.21 .0-RC1
131
131
- scalajs_job :
132
132
name : sjs0.6_2.12
133
133
scala_version : 2.12.10
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import: scala/scala-dev:travis/default.yml
5
5
language : scala
6
6
7
7
scala :
8
- - 0.20 .0-RC1
8
+ - 0.21 .0-RC1
9
9
- 2.12.10
10
10
- 2.13.1
11
11
18
18
19
19
matrix :
20
20
exclude :
21
- - scala : 0.20 .0-RC1
21
+ - scala : 0.21 .0-RC1
22
22
env : SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
23
- - scala : 0.20 .0-RC1
23
+ - scala : 0.21 .0-RC1
24
24
env : SCALAJS_VERSION=1.0.0-RC2 ADOPTOPENJDK=8
25
25
26
26
install :
Original file line number Diff line number Diff line change @@ -291,10 +291,10 @@ class XIncludeFilter extends XMLFilterImpl {
291
291
val reader = new InputStreamReader (in, encoding)
292
292
val c = new Array [Char ](1024 )
293
293
var charsRead : Int = 0 // bogus init value
294
- do {
294
+ while ({ {
295
295
charsRead = reader.read(c, 0 , 1024 )
296
296
if (charsRead > 0 ) this .characters(c, 0 , charsRead)
297
- } while ( charsRead != - 1 )
297
+ } ; charsRead != - 1 }) ( )
298
298
} catch {
299
299
case e : UnsupportedEncodingException =>
300
300
throw new SAXException (" Unsupported encoding: "
Original file line number Diff line number Diff line change @@ -115,8 +115,8 @@ private[scala] trait MarkupParserCommon extends TokenTests {
115
115
116
116
val buf = new StringBuilder
117
117
118
- do buf append ch_returning_nextch
119
- while ( isNameChar(ch))
118
+ while ({ buf append ch_returning_nextch
119
+ ; isNameChar(ch)}) ( )
120
120
121
121
if (buf.last == ':' ) {
122
122
reportSyntaxError(" name cannot end in ':'" )
You can’t perform that action at this time.
0 commit comments