Skip to content

Commit 1885cb2

Browse files
committed
Update to 0.16.0-RC3
1 parent 0fb4df5 commit 1885cb2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val dottyVersion = "0.15.0-bin-20190522-ffb250d-NIGHTLY" // dottyLatestNightlyBuild.get
1+
val dottyVersion = "0.16.0-RC3" // dottyLatestNightlyBuild.get
22

33
lazy val root = project
44
.in(file("."))

src/main/scala/dotty/xml/interpolator/internal/package.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package dotty.xml.interpolator.internal
22

33
import scala.util.parsing.input._
44

5-
implied for Conversion[Position, Int] {
5+
delegate for Conversion[Position, Int] {
66
def apply(pos: Position): Int = {
77
pos match {
88
case OffsetPosition(_, offset) => offset

src/test/scala/dotty/xml/interpolator/NodeOps.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package dotty.xml.interpolator
22

3-
implied NodeOps {
3+
delegate NodeOps {
44

55
def (self: scala.xml.Node) (that: scala.xml.Node): Boolean =
66
self == that && hasSameScope(self, that)
@@ -17,7 +17,7 @@ implied NodeOps {
1717
}
1818
}
1919

20-
implied NodeBufferOps {
20+
delegate NodeBufferOps {
2121
def (self: scala.xml.NodeBuffer) (that: scala.xml.NodeBuffer): Boolean = {
2222
val selfIt = self.iterator
2323
val thatIt = that.iterator

0 commit comments

Comments
 (0)