Package

sbt.internal

inc

Permalink

package inc

Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class APIChange extends AnyRef

    Permalink
  2. final case class APIChangeDueToMacroDefinition(modified0: String) extends APIChange with Product with Serializable

    Permalink

    If we recompile a source file that contains a macro definition then we always assume that it's api has changed.

    If we recompile a source file that contains a macro definition then we always assume that it's api has changed. The reason is that there's no way to determine if changes to macros implementation are affecting its users or not. Therefore we err on the side of caution.

  3. final class APIChanges extends AnyRef

    Permalink
  4. trait APIs extends AnyRef

    Permalink
  5. final class Added extends Change

    Permalink
  6. trait Analysis extends CompileAnalysis

    Permalink
  7. trait AnalysisStore extends AnyRef

    Permalink
  8. sealed abstract class Change extends AnyRef

    Permalink
  9. trait Changes[A] extends AnyRef

    Permalink
  10. class ClassToSourceMapper extends AnyRef

    Permalink

    Maps class-based dependencies to source dependencies using classes relation.

    Maps class-based dependencies to source dependencies using classes relation.

    The mapping is performed using two relations that track declared classes before and after recompilation of sources. This way, we can properly map dependencies on classes that have been moved between source files. In such case, a single class can be mapped to two different source files.

  11. trait CompanionsStore extends AnyRef

    Permalink
  12. trait Compilations extends AnyRef

    Permalink

    Information about compiler runs accumulated since clean command has been run.

  13. final class Exists extends Stamp

    Permalink
  14. trait ExternalLookup extends xsbti.compile.ExternalHooks.Lookup

    Permalink
  15. sealed trait FileValueCache[T] extends AnyRef

    Permalink
  16. final class Hash extends Stamp

    Permalink
  17. final case class InitialChanges(internalSrc: Changes[File], removedProducts: Set[File], binaryDeps: Set[File], external: APIChanges) extends Product with Serializable

    Permalink
  18. final class LastModified extends Stamp

    Permalink
  19. trait Lookup extends ExternalLookup

    Permalink

    A trait that encapsulates looking up elements on a classpath and looking up an external (for another subproject) Analysis instance.

  20. final class Modified extends Change

    Permalink
  21. final case class ModifiedNames(regularNames: Set[String], implicitNames: Set[String]) extends Product with Serializable

    Permalink

    ModifiedNames are determined by comparing name hashes in two versions of an API representation.

    ModifiedNames are determined by comparing name hashes in two versions of an API representation.

    Note that we distinguish between sets of regular (non-implicit) and implicit modified names. This distinction is needed because the name hashing algorithm makes different decisions based on whether modified name is implicit or not. Implicit names are much more difficult to handle due to difficulty of reasoning about the implicit scope.

  22. final case class NamesChange(modified0: String, modifiedNames: ModifiedNames) extends APIChange with Product with Serializable

    Permalink

    An APIChange that carries information about modified names.

    An APIChange that carries information about modified names.

    This class is used only when name hashing algorithm is enabled.

  23. trait ReadStamps extends AnyRef

    Permalink
  24. trait Relations extends AnyRef

    Permalink

    Provides mappings between source files, generated classes (products), and binaries.

    Provides mappings between source files, generated classes (products), and binaries. Dependencies that are tracked include internal: a dependency on a source in the same compilation group (project), external: a dependency on a source in another compilation group (tracked as the name of the class), library: a dependency on a class or jar file not generated by a source file in any tracked compilation group, inherited: a dependency that resulted from a public template inheriting, direct: any type of dependency, including inheritance.

  25. final class Removed extends Change

    Permalink
  26. trait SourceInfo extends AnyRef

    Permalink
  27. trait SourceInfos extends AnyRef

    Permalink
  28. sealed trait Stamp extends AnyRef

    Permalink
  29. trait Stamps extends ReadStamps

    Permalink

    Provides information about files as they were at a specific time.

Value Members

  1. object APIs

    Permalink
  2. object Analysis extends Serializable

    Permalink
  3. object AnalysisStore

    Permalink
  4. object ClassfileManager

    Permalink
  5. object Compilations

    Permalink
  6. object FileValueCache

    Permalink
  7. object Incremental

    Permalink

    Helper class to run incremental compilation algorithm.

    Helper class to run incremental compilation algorithm.

    This class delegates down to - IncrementalNameHashing - IncrementalDefault - IncrementalAnyStyle

  8. object IncrementalCompile

    Permalink

    Helper methods for running incremental compilation.

    Helper methods for running incremental compilation. All this is responsible for is adapting any xsbti.AnalysisCallback into one compatible with the sbt.internal.inc.Incremental class.

  9. object Locate

    Permalink
  10. object MiniSetupUtil

    Permalink
  11. object ModifiedNames extends Serializable

    Permalink
  12. object Relations

    Permalink
  13. object SourceInfos

    Permalink
  14. object Stamp

    Permalink
  15. object Stamps

    Permalink

Ungrouped