Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ lazy val metalsRunner = project
maintainer := "scalacenter",
scalaVersion := ScalaVersions.stableLTS,
libraryDependencies ++= Seq(
"org.scalameta" % "metals" % "1.4.2" cross (CrossVersion.for3Use2_13),
"org.scalameta" % "metals" % "1.6.3" cross (CrossVersion.for3Use2_13),
"org.eclipse.lsp4j" % "org.eclipse.lsp4j" % "0.21.1",
"org.http4s" %% "http4s-ember-server" % "0.23.24",
"org.http4s" %% "http4s-ember-client" % "0.23.24",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ class PresentationCompilers[F[_]: Async](metalsWorkingDirectory: Path) {
// service loader must be blocking as it's not thread safe
private val serviceLoader: F[BlockingServiceLoader[F]] = Semaphore[F](1).map(BlockingServiceLoader.instance[F])

val index = OnDemandSymbolIndex.empty()(
using EmptyReportContext
)
given ReportContext = EmptyReportContext

val index = OnDemandSymbolIndex.empty()

val docs = new Docstrings(index)

Expand Down
Loading