Packages

class Run extends RunContextApi with RunReporting with RunParsing

A Run is a single execution of the compiler on a set of units.

Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Run
  2. RunParsing
  3. RunReporting
  4. RunContextApi
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Run()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def advancePhase(): Unit

    take note that phase is completed (for progress reporting)

  5. def advanceUnit(): Unit

    take note that a phase on a unit is completed (for progress reporting)

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def canRedefine(sym: Global.Symbol): Boolean

    Is this run allowed to redefine the given symbol? Usually this is true if the run does not already compile sym, but for interactive mode we have a more liberal interpretation.

  8. def cancel(): Unit
  9. val cleanupPhase: Phase
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. def compile(filenames: List[String]): Unit

    Compile list of files given by their names

  12. def compileFiles(files: List[AbstractFile]): Unit

    Compile list of abstract files.

  13. def compileLate(unit: Global.CompilationUnit): Unit

    Compile abstract file until globalPhase, but at least to phase "namer".

  14. def compileLate(file: AbstractFile): Unit

    Compile abstract file until globalPhase, but at least to phase "namer".

  15. def compileSources(sources: List[SourceFile]): Unit

    Compile list of source files, unless there is a problem already, such as a plugin was passed a bad option.

  16. def compileUnits(units: List[Global.CompilationUnit], fromPhase: Phase): Unit
  17. val compiledFiles: HashSet[String]
  18. def compiles(sym: Global.Symbol): Boolean

    does this run compile given class, module, or case factory?

  19. var currentUnit: Global.CompilationUnit

    The currently compiled unit; set from GlobalPhase

    The currently compiled unit; set from GlobalPhase

    Definition Classes
    Run → RunContextApi
  20. val delambdafyPhase: Phase
  21. def deprecationWarnings: List[(Global.Position, String)]
  22. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  24. val erasurePhase: Phase
  25. val explicitouterPhase: Phase
  26. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. val flattenPhase: Phase
  28. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def informUnitStarting(phase: Phase, unit: Global.CompilationUnit): Unit

    For subclasses to override.

    For subclasses to override. Called when phase is about to be run on unit. Variables are passed explicitly to indicate that globalPhase and currentUnit have been set.

  31. var isDefined: Boolean

    Have been running into too many init order issues with Run during erroneous conditions.

    Have been running into too many init order issues with Run during erroneous conditions. Moved all these vals up to the top of the file so at least they're not trivially null.

  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. val jvmPhase: Phase
  34. val lambdaliftPhase: Phase
  35. val mixinPhase: Phase
  36. val namerPhase: Phase
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. val parserPhase: Phase

    All phases as of 3/2012 here for handiness; the ones in active use uncommented.

  41. val parsing: Global.PerRunParsing
    Definition Classes
    RunParsing
  42. def phaseNamed(name: String): Phase
  43. val picklerPhase: Phase
  44. val posterasurePhase: Phase
  45. final def printStatisticsFor(phase: Phase): Unit
  46. val profiler: Profiler
  47. def progress(current: Int, total: Int): Unit

    Progress tracking.

    Progress tracking. Measured in "progress units" which are 1 per compilation unit per phase completed.

    current

    number of "progress units" completed

    total

    total number of "progress units" in run

  48. val refchecksPhase: Phase
  49. def registerPickle(sym: Global.Symbol): Unit
  50. val reporting: Global.PerRunReporting
    Definition Classes
    RunReporting
  51. def runCheckers(): Unit
    Attributes
    protected
  52. val runDefinitions: reflect.internal.Definitions.definitions.RunDefinitions

    Caching member symbols that are def-s in Definitions because they might change from Run to Run.

  53. def runIsAt(ph: Phase): Boolean
  54. def runIsAtOptimiz: Boolean
  55. def size: Int
  56. def skipPhase(name: String): Boolean

    Should we skip the given phase?

    Should we skip the given phase?

    Attributes
    protected
  57. val specializePhase: Phase
  58. def stopPhase(name: String): Boolean

    Should we stop right before entering the given phase?

    Should we stop right before entering the given phase?

    Attributes
    protected
  59. val symData: AnyRefMap[Global.Symbol, PickleBuffer]

    A map from compiled top-level symbols to their picklers

  60. val symSource: HashMap[Global.Symbol, AbstractFile]

    A map from compiled top-level symbols to their source files

  61. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  62. def toString(): String
    Definition Classes
    Run → AnyRef → Any
  63. final val totalCompileTime: statistics.Timer
    Attributes
    protected
  64. val typerPhase: Phase
  65. def uncheckedWarnings: List[(Global.Position, String)]
  66. val uncurryPhase: Phase
  67. def units: Iterator[Global.CompilationUnit]
    Definition Classes
    Run → RunContextApi
  68. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  69. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  70. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  71. object trackerFactory extends SymbolTrackers

Inherited from Global.RunParsing

Inherited from Global.RunReporting

Inherited from Global.RunContextApi

Inherited from AnyRef

Inherited from Any

Ungrouped