Packages

class CompilationUnit extends Global.CompilationUnitContextApi

One unit of compilation that has been submitted to the compiler. It typically corresponds to a single file of source code. It includes error-reporting hooks.

Self Type
Global.CompilationUnit
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CompilationUnit
  2. CompilationUnitContextApi
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CompilationUnit(source: SourceFile)
  2. new CompilationUnit(source: SourceFile, freshNameCreator: FreshNameCreator)

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. var body: Global.Tree

    the content of the compilation unit in tree form

    the content of the compilation unit in tree form

    Definition Classes
    CompilationUnit → CompilationUnitContextApi
  6. var checkedFeatures: Set[Global.Symbol]

    The features that were already checked for this unit

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def encounteredXml(pos: Global.Position): Unit

    Record that we encountered XML.

    Record that we encountered XML. Should only be called once.

    Attributes
    protected[nsc]
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def exists: Boolean
  12. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  13. def firstXmlPos: Global.Position

    Position of first XML literal in this unit.

  14. implicit val fresh: FreshNameCreator

    the fresh name creator

  15. def freshTermName(prefix: String = nme.FRESH_TERM_NAME_PREFIX): Global.TermName
  16. def freshTypeName(prefix: String): Global.TypeName
  17. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hasXml: Boolean

    Does this unit contain XML?

  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. val icode: LinkedHashSet[IClass]

    For sbt compatibility (https://github.com/scala/scala/pull/4588)

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. val isJava: Boolean

    Is this about a .java source file?

  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. def position(pos: Int): Position
  27. def registerDependency(symbol: Global.Symbol): Unit
  28. val source: SourceFile
    Definition Classes
    CompilationUnit → CompilationUnitContextApi
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def targetPos: Global.Position

    The position of a targeted type check If this is different from NoPosition, the type checking will stop once a tree that contains this position range is fully attributed.

  31. val toCheck: ListBuffer[() ⇒ Unit]

    things to check at end of compilation unit

  32. def toString(): String
    Definition Classes
    CompilationUnit → AnyRef → Any
  33. val transformed: AnyRefMap[Global.Tree, Global.Tree]
  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( ... ) @native()
  37. object synthetics

    Synthetic definitions generated by namer, eliminated by typer.

Deprecated Value Members

  1. final def comment(pos: Global.Position, msg: String): Unit
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.2) This method will be removed. It does nothing.

  2. def defined: HashSet[Global.Symbol]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.9) Not supported

  3. def depends: HashSet[Global.Symbol]
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.9) Not supported and no longer used by Zinc

  4. final def deprecationWarning(pos: Global.Position, msg: String, since: String): Unit
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.2) Call global.currentRun.reporting.deprecationWarning directly instead.

  5. final def echo(pos: Global.Position, msg: String): Unit
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.2) Call global.reporter.echo directly instead.

  6. final def error(pos: Global.Position, msg: String): Unit
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.2) Call global.reporter.error (or typer.context.error) directly instead.

  7. final def uncheckedWarning(pos: Global.Position, msg: String): Unit
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.2) Call global.currentRun.reporting.uncheckedWarning directly instead.

  8. final def warning(pos: Global.Position, msg: String): Unit
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.2) Call global.reporter.warning (or typer.context.warning) directly instead.

Inherited from AnyRef

Inherited from Any

Ungrouped