-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #152 from gourlaysama/new-collections
Upgrade to 2.13.0-M4 and new collections
- Loading branch information
Showing
6 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
addSbtPlugin("org.scala-lang.modules" % "sbt-scala-module" % "1.0.14") | ||
|
||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.22") | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.23") |
5 changes: 5 additions & 0 deletions
5
shared/src/main/scala-2.11-2.12/scala/util/parsing/input/ScalaVersionSpecificPagedSeq.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package scala.util.parsing.input | ||
|
||
private[input] trait ScalaVersionSpecificPagedSeq[T] { | ||
// Nothing for 2.11 and 2.12! | ||
} |
7 changes: 7 additions & 0 deletions
7
shared/src/main/scala-2.13/scala/util/parsing/input/ScalaVersionSpecificPagedSeq.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package scala.util.parsing.input | ||
|
||
private[input] trait ScalaVersionSpecificPagedSeq[T] { self: PagedSeq[T] => | ||
// Members declared in scala.collection.Seq | ||
override def iterableFactory: collection.SeqFactory[collection.IndexedSeq] = collection.IndexedSeq | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters