File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
src/main/scala/streams/ops Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
language : scala
2
2
scala :
3
3
- 2.11.7
4
+ - 2.12.0-M2
5
+ jdk :
6
+ - oraclejdk8
4
7
git :
5
8
depth : 1
6
9
cache :
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ libraryDependencies <+= scalaVersion("org.scala-lang" % "scala-compiler" % _)
13
13
libraryDependencies <+= scalaVersion(" org.scala-lang" % " scala-reflect" % _)
14
14
15
15
libraryDependencies ++= Seq (
16
- " org.scala-js" %% " scalajs-library" % " 0.6.2 " % " test" ,
16
+ " org.scala-js" %% " scalajs-library" % " 0.6.5 " % " test" ,
17
17
" junit" % " junit" % " 4.12" % " test" ,
18
18
" com.novocode" % " junit-interface" % " 0.11" % " test"
19
19
)
Original file line number Diff line number Diff line change @@ -18,10 +18,20 @@ private[streams] trait ArrayOpsOps
18
18
" charArrayOps" |
19
19
" booleanArrayOps" |
20
20
" floatArrayOps" |
21
- " doubleArrayOps" )) |
21
+ " doubleArrayOps" |
22
+ // These now have a _ prefix in 2.12.0-M2:
23
+ " _intArrayOps" |
24
+ " _longArrayOps" |
25
+ " _byteArrayOps" |
26
+ " _shortArrayOps" |
27
+ " _charArrayOps" |
28
+ " _booleanArrayOps" |
29
+ " _floatArrayOps" |
30
+ " _doubleArrayOps" )) |
22
31
TypeApply (
23
32
Select (Predef (), N (
24
33
" refArrayOps" |
34
+ " _refArrayOps" |
25
35
" genericArrayOps" )),
26
36
List (_)),
27
37
List (array)) =>
You can’t perform that action at this time.
0 commit comments