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 11language : scala
22scala :
33- 2.11.7
4+ - 2.12.0-M2
5+ jdk :
6+ - oraclejdk8
47git :
58 depth : 1
69cache :
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ libraryDependencies <+= scalaVersion("org.scala-lang" % "scala-compiler" % _)
1313libraryDependencies <+= scalaVersion(" org.scala-lang" % " scala-reflect" % _)
1414
1515libraryDependencies ++= Seq (
16- " org.scala-js" %% " scalajs-library" % " 0.6.2 " % " test" ,
16+ " org.scala-js" %% " scalajs-library" % " 0.6.5 " % " test" ,
1717 " junit" % " junit" % " 4.12" % " test" ,
1818 " com.novocode" % " junit-interface" % " 0.11" % " test"
1919)
Original file line number Diff line number Diff line change @@ -18,10 +18,20 @@ private[streams] trait ArrayOpsOps
1818 " charArrayOps" |
1919 " booleanArrayOps" |
2020 " 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" )) |
2231 TypeApply (
2332 Select (Predef (), N (
2433 " refArrayOps" |
34+ " _refArrayOps" |
2535 " genericArrayOps" )),
2636 List (_)),
2737 List (array)) =>
You can’t perform that action at this time.
0 commit comments