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
3 changes: 2 additions & 1 deletion compiler/src/dotty/tools/backend/jvm/BackendUtils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ object BackendUtils {
22 -> asm.Opcodes.V22,
23 -> asm.Opcodes.V23,
24 -> asm.Opcodes.V24,
25 -> asm.Opcodes.V25
25 -> asm.Opcodes.V25,
26 -> asm.Opcodes.V26,
)
}
6 changes: 3 additions & 3 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,7 @@ object Build {

// get libraries onboard
libraryDependencies ++= Seq(
"org.scala-lang.modules" % "scala-asm" % "9.8.0-scala-1", // used by the backend
"org.scala-lang.modules" % "scala-asm" % "9.9.0-scala-1", // used by the backend
Dependencies.compilerInterface,
("io.get-coursier" %% "coursier" % "2.0.16" % Test).cross(CrossVersion.for3Use2_13),
),
Expand Down Expand Up @@ -2452,7 +2452,7 @@ object Build {
// All the dependencies needed by the compiler
libraryDependencies ++= Seq(
"com.github.sbt" % "junit-interface" % "0.13.3" % Test,
"org.scala-lang.modules" % "scala-asm" % "9.8.0-scala-1",
"org.scala-lang.modules" % "scala-asm" % "9.9.0-scala-1",
Dependencies.compilerInterface,
("io.get-coursier" %% "coursier" % "2.0.16" % Test).cross(CrossVersion.for3Use2_13),
),
Expand Down Expand Up @@ -2601,7 +2601,7 @@ object Build {
Test / unmanagedResourceDirectories += baseDirectory.value / "test-resources",
// All the dependencies needed by the compiler
libraryDependencies ++= Seq(
"org.scala-lang.modules" % "scala-asm" % "9.8.0-scala-1",
"org.scala-lang.modules" % "scala-asm" % "9.9.0-scala-1",
Dependencies.compilerInterface,
"com.github.sbt" % "junit-interface" % "0.13.3" % Test,
("io.get-coursier" %% "coursier" % "2.0.16" % Test).cross(CrossVersion.for3Use2_13),
Expand Down
Loading