All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.build.postprocessing.ByteCodePostProcessor.scala Maven / Gradle / Ivy

package scala.build.postprocessing

import scala.build.{GeneratedSource, Logger}
import scala.util.{Either, Right}

case object ByteCodePostProcessor extends PostProcessor {
  def postProcess(
    generatedSources: Seq[GeneratedSource],
    mappings: Map[String, (String, Int)],
    workspace: os.Path,
    output: os.Path,
    logger: Logger,
    scalaVersion: String
  ): Either[String, Unit] =
    Right(AsmPositionUpdater.postProcess(mappings, output, logger))
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy