scala.tools.nsc.interactive

RefinedBuildManager

class RefinedBuildManager extends Changes with BuildManager

A more defined build manager, based on change sets. For each updated source file, it computes the set of changes to its definitions, then checks all dependent units to see if the changes require a compilation. It repeats this process until a fixpoint is reached.

Source
RefinedBuildManager.scala
Linear Supertypes
BuildManager, Changes, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. RefinedBuildManager
  2. BuildManager
  3. Changes
  4. AnyRef
  5. Any
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RefinedBuildManager(settings: Settings)

Type Members

  1. case class Added(e: Entity) extends Change with Product with Serializable

  2. class BuilderGlobal extends Global

  3. abstract class Change extends AnyRef

  4. case class Changed(e: Entity, reason: String) extends Change with Product with Serializable

  5. case class Class(name: String) extends Entity with Product with Serializable

  6. case class Definition(name: String) extends Entity with Product with Serializable

  7. abstract class Entity extends AnyRef

    An entity in source code, either a class or a member definition.

  8. class NoSourcePathPathResolver extends PathResolver

  9. case class ParentChanged(e: Entity) extends Change with Product with Serializable

  10. case class Removed(e: Entity) extends Change with Product with Serializable

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addSourceFiles(files: Set[AbstractFile]): Unit

    Add the given source files to the managed build process.

    Add the given source files to the managed build process.

    Definition Classes
    RefinedBuildManagerBuildManager
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def buildingFiles(included: Set[AbstractFile]): Unit

    Notification that the supplied set of files is being built

    Notification that the supplied set of files is being built

    Definition Classes
    BuildManager
  9. def changeChangeSet(sym: Symbol, msg: String): Change

    Definition Classes
    Changes
  10. def changeSet(from: Type, toSym: Symbol): List[Change]

    Return the list of changes between 'from' and 'toSym.

    Return the list of changes between 'from' and 'toSym.info'.

    Definition Classes
    Changes
  11. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. val compiler: BuilderGlobal

    A compiler instance used to compile files on demand.

    A compiler instance used to compile files on demand.

    Definition Classes
    RefinedBuildManagerBuildManagerChanges
  13. def deleteClassfiles(sources: Set[AbstractFile]): Unit

    Delete classfiles derived from the supplied set of sources

    Delete classfiles derived from the supplied set of sources

    Definition Classes
    BuildManager
  14. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  19. def invalidated(files: Set[AbstractFile], changesOf: Map[Symbol, List[Change]], processed: Set[AbstractFile] = Set.empty): Set[AbstractFile]

    Return the set of source files that are invalidated by the given changes.

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def loadFrom(file: AbstractFile, toFile: (String) ⇒ AbstractFile): Boolean

    Load saved dependency information.

    Load saved dependency information.

    Definition Classes
    RefinedBuildManagerBuildManager
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. def newCompiler(settings: Settings): BuilderGlobal

    Attributes
    protected
  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. def parentChangeSet(sym: Symbol): Change

    Definition Classes
    Changes
  27. def removeChangeSet(sym: Symbol): Change

    Definition Classes
    Changes
  28. def removeFiles(files: Set[AbstractFile]): Unit

    Remove the given files from the managed build process.

    Remove the given files from the managed build process.

    Definition Classes
    RefinedBuildManagerBuildManager
  29. def saveTo(file: AbstractFile, fromFile: (AbstractFile) ⇒ String): Unit

    Save dependency information to file'.

    Save dependency information to file'.

    Definition Classes
    RefinedBuildManagerBuildManager
  30. val settings: Settings

  31. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  32. def toString(): String

    Definition Classes
    AnyRef → Any
  33. def update(added: Set[AbstractFile], removed: Set[AbstractFile]): Unit

    The given files have been modified by the user.

    The given files have been modified by the user. Recompile them and their dependent files.

    Definition Classes
    RefinedBuildManagerBuildManager
  34. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from BuildManager

Inherited from Changes

Inherited from AnyRef

Inherited from Any