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

sbt.inc.IncrementalAntStyle.scala Maven / Gradle / Ivy

package sbt
package inc

import java.io.File
import xsbti.api.Source

private final class IncrementalAntStyle(log: Logger, options: IncOptions) extends IncrementalCommon(log, options) {

  /** Ant-style mode doesn't do anything special with package objects */
  override protected def invalidatedPackageObjects(invalidated: Set[File], relations: Relations): Set[File] = Set.empty

  /** In Ant-style mode we don't need to compare APIs because we don't perform any invalidation */
  override protected def sameAPI[T](src: T, a: Source, b: Source): Option[APIChange[T]] = None

  /** In Ant-style mode we don't perform any invalidation */
  override protected def invalidateByExternal(relations: Relations, externalAPIChange: APIChange[String]): Set[File] = Set.empty

  /** In Ant-style mode we don't perform any invalidation */
  override protected def invalidateSource(relations: Relations, change: APIChange[File]): Set[File] = Set.empty

  /** In Ant-style mode we don't need to perform any dependency analysis hence we can always return an empty set. */
  override protected def allDeps(relations: Relations): File => Set[File] = _ => Set.empty

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy