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

acyclic.package.scala Maven / Gradle / Ivy

The newest version!
import scala.annotation.compileTimeOnly
package object acyclic {

  /**
   * Import this within a file to make Acyclic verify that the file does not
   * have any circular dependencies with other files.
   */
  @compileTimeOnly("acyclic.file is just a marker and not a real value")
  def file = ()

  /**
   */
  @compileTimeOnly("acyclic.file is just a marker and not a real value")
  def skipped = ()

  /**
   * Import this within a package object to make Acyclic verify that the entire
   * package does not have any circular dependencies with other files or
   * packages. Circular dependencies *within* the package are Ok.
   */
  @compileTimeOnly("acyclic.pkg is just a marker and not a real value")
  def pkg = ()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy