We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9c03b commit 0b59b69Copy full SHA for 0b59b69
build.sbt
@@ -1,14 +1,14 @@
1
-val dottyVersion = "3.1.2" // dottyLatestNightlyBuild.get
+val dottyVersion = "3.3.3" // dottyLatestNightlyBuild.get
2
3
lazy val root = project
4
.in(file("."))
5
.settings(
6
- name := "dotty-xml-interpolator",
+ name := "scala-xml-interpolator",
7
version := "0.1.0",
8
9
scalaVersion := dottyVersion,
10
scalacOptions ++= Seq(
11
- "-Xprint-inline"
+ "-deprecation"
12
),
13
libraryDependencies ++= Seq(
14
"org.scala-lang.modules" % "scala-parser-combinators_2.13" % "1.1.2",
src/main/scala/dotty/xml/interpolator/internal/Macro.scala
@@ -81,7 +81,7 @@ object Macro {
81
82
def appendPart(part: Expr[String]) = {
83
bf += sb.length
84
- sb ++= part.valueOrError
+ sb ++= part.valueOrAbort
85
86
}
87
0 commit comments