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

scala.build.preprocessing.Preprocessor.scala Maven / Gradle / Ivy

package scala.build.preprocessing

import scala.build.errors.BuildException
import scala.build.{Inputs, Logger}

trait Preprocessor {
  def preprocess(
    input: Inputs.SingleElement,
    logger: Logger
  ): Option[Either[BuildException, Seq[PreprocessedSource]]]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy