File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
main/scala/dotty/xml/interpolator/internal
test/scala/dotty/xml/interpolator Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- val dottyVersion = " 0.15 .0-bin-20190522-ffb250d-NIGHTLY " // dottyLatestNightlyBuild.get
1+ val dottyVersion = " 0.16 .0-RC3 " // dottyLatestNightlyBuild.get
22
33lazy val root = project
44 .in(file(" ." ))
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package dotty.xml.interpolator.internal
22
33import 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
Original file line number Diff line number Diff line change 11package 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
You can’t perform that action at this time.
0 commit comments