Skip to content

Commit

Permalink
latest scalameta contains breaking changes in internals
Browse files Browse the repository at this point in the history
  • Loading branch information
bjaglin committed Feb 11, 2024
1 parent 6ada945 commit 9ba6c51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ lazy val sharedJavaSettings = List(
)

val V = new {
val scalameta = "4.8.15"
val scalameta = "4.8.15+150-a7c0baa0-SNAPSHOT"
val munit = "1.0.0-M11"
val coursier = "1.0.19"
val scalacheck = "1.17.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ object Instrumenter {

def stringLiteral(string: String): String = {
import scala.meta.internal.prettyprinters._
enquote(string, DoubleQuotes)
DoubleQuotes(string)
}

def wrapBody(body: String): String = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ object Instrumenter {

def stringLiteral(string: String): String = {
import scala.meta.internal.prettyprinters._
enquote(string, DoubleQuotes)
DoubleQuotes(string)
}

def wrapBody(body: String): String = {
Expand Down

0 comments on commit 9ba6c51

Please sign in to comment.