Packages

o

scala.tools.nsc.CompilationUnits

NoCompilationUnit

object NoCompilationUnit extends Global.CompilationUnit

An object representing a missing compilation unit.

Source
CompilationUnits.scala
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. NoCompilationUnit
  2. CompilationUnit
  3. CompilationUnitContextApi
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. object synthetics

    Synthetic definitions generated by namer, eliminated by typer.

    Synthetic definitions generated by namer, eliminated by typer.

    Definition Classes
    CompilationUnit
  2. 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
  3. var checkedFeatures: Set[Global.Symbol]

    The features that were already checked for this unit

    The features that were already checked for this unit

    Definition Classes
    CompilationUnit
  4. def defined: HashSet[Global.Symbol]
    Definition Classes
    CompilationUnit
  5. def depends: HashSet[Global.Symbol]
    Definition Classes
    CompilationUnit
  6. def exists: Boolean
    Definition Classes
    NoCompilationUnitCompilationUnit
  7. def firstXmlPos: Global.Position

    Position of first XML literal in this unit.

    Position of first XML literal in this unit.

    Definition Classes
    CompilationUnit
  8. implicit val fresh: FreshNameCreator

    the fresh name creator

    the fresh name creator

    Definition Classes
    CompilationUnit
  9. def freshTermName(prefix: String = nme.FRESH_TERM_NAME_PREFIX): Global.TermName
    Definition Classes
    CompilationUnit
  10. def freshTypeName(prefix: String): Global.TypeName
    Definition Classes
    CompilationUnit
  11. def hasXml: Boolean

    Does this unit contain XML?

    Does this unit contain XML?

    Definition Classes
    CompilationUnit
  12. val icode: LinkedHashSet[IClass]

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

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

    Definition Classes
    CompilationUnit
  13. lazy val isJava: Boolean

    Is this about a .java source file?

    Is this about a .java source file?

    Definition Classes
    NoCompilationUnitCompilationUnit
  14. def position(pos: Int): Position
    Definition Classes
    CompilationUnit
  15. val source: SourceFile
    Definition Classes
    CompilationUnit → CompilationUnitContextApi
  16. 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.

    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.

    Definition Classes
    CompilationUnit
  17. val toCheck: ListBuffer[() ⇒ Unit]

    things to check at end of compilation unit

    things to check at end of compilation unit

    Definition Classes
    CompilationUnit
  18. def toString(): String
    Definition Classes
    NoCompilationUnitCompilationUnit → AnyRef → Any
  19. val transformed: AnyRefMap[Global.Tree, Global.Tree]
    Definition Classes
    CompilationUnit

Deprecated Value Members

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

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

  2. final def deprecationWarning(pos: Global.Position, msg: String, since: String): Unit
    Definition Classes
    CompilationUnit
    Annotations
    @deprecated
    Deprecated

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

  3. final def echo(pos: Global.Position, msg: String): Unit
    Definition Classes
    CompilationUnit
    Annotations
    @deprecated
    Deprecated

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

  4. final def error(pos: Global.Position, msg: String): Unit
    Definition Classes
    CompilationUnit
    Annotations
    @deprecated
    Deprecated

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

  5. final def uncheckedWarning(pos: Global.Position, msg: String): Unit
    Definition Classes
    CompilationUnit
    Annotations
    @deprecated
    Deprecated

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

  6. final def warning(pos: Global.Position, msg: String): Unit
    Definition Classes
    CompilationUnit
    Annotations
    @deprecated
    Deprecated

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