Trait/Object

sbt.internal.inc

Analysis

Related Docs: object Analysis | package inc

Permalink

trait Analysis extends CompileAnalysis

Linear Supertypes
CompileAnalysis, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Analysis
  2. CompileAnalysis
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def ++(other: Analysis): Analysis

    Permalink

    Concatenates Analysis objects naively, i.e., doesn't internalize external deps on added files.

    Concatenates Analysis objects naively, i.e., doesn't internalize external deps on added files. See Analysis.merge.

  2. abstract def --(sources: Iterable[File]): Analysis

    Permalink

    Drops all analysis information for sources naively, i.e., doesn't externalize internal deps on removed files.

  3. abstract def addSource(src: File, apis: Iterable[AnalyzedClass], stamp: Stamp, info: SourceInfo, nonLocalProducts: Iterable[NonLocalProduct], localProducts: Iterable[LocalProduct], internalDeps: Iterable[InternalDependency], externalDeps: Iterable[ExternalDependency], binaryDeps: Iterable[(File, String, Stamp)]): Analysis

    Permalink
  4. abstract val apis: APIs

    Permalink
  5. abstract val compilations: Compilations

    Permalink

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

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

    The main use-case for using compilations field is to determine how many iterations it took to compilen give code. The Compilation object are also stored in Source objects so there's an indirect way to recover information about files being recompiled in every iteration.

    The incremental compilation algorithm doesn't use information stored in compilations. It's safe to prune contents of that field without breaking internal consistency of the entire Analysis object.

  6. abstract def copy(stamps: Stamps = stamps, apis: APIs = apis, relations: Relations = relations, infos: SourceInfos = infos, compilations: Compilations = compilations): Analysis

    Permalink
  7. abstract val infos: SourceInfos

    Permalink
  8. abstract val relations: Relations

    Permalink

    Mappings between sources, classes, and binaries.

  9. abstract val stamps: Stamps

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    CompileAnalysis → AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    CompileAnalysis → AnyRef → Any
  11. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  14. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  16. lazy val toString: String

    Permalink
    Definition Classes
    Analysis → CompileAnalysis → AnyRef → Any
  17. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from CompileAnalysis

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped