class RichCompilationUnit extends Global.CompilationUnit
- Alphabetic
- By Inheritance
- RichCompilationUnit
- CompilationUnit
- CompilationUnitContextApi
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new RichCompilationUnit(source: SourceFile)
Value Members
-
object
synthetics
Synthetic definitions generated by namer, eliminated by typer.
Synthetic definitions generated by namer, eliminated by typer.
- Definition Classes
- CompilationUnit
-
var
_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.
-
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
-
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
- var contexts: Global.Contexts
-
var
editPoint: Int
the current edit point offset
-
def
exists: Boolean
- Definition Classes
- CompilationUnit
-
def
firstXmlPos: Global.Position
Position of first XML literal in this unit.
Position of first XML literal in this unit.
- Definition Classes
- CompilationUnit
-
implicit
val
fresh: FreshNameCreator
the fresh name creator
the fresh name creator
- Definition Classes
- CompilationUnit
-
def
freshTermName(prefix: String = nme.FRESH_TERM_NAME_PREFIX): Global.TermName
- Definition Classes
- CompilationUnit
-
def
freshTypeName(prefix: String): Global.TypeName
- Definition Classes
- CompilationUnit
-
def
hasXml: Boolean
Does this unit contain XML?
Does this unit contain XML?
- Definition Classes
- CompilationUnit
-
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
-
val
isJava: Boolean
Is this about a .java source file?
Is this about a .java source file?
- Definition Classes
- CompilationUnit
-
def
isParsed: Boolean
Unit has been parsed
-
def
isTypeChecked: Boolean
Unit has been typechecked, but maybe not in latest runs
-
def
isUpToDate: Boolean
Unit has been typechecked and is up to date
-
var
lastBody: Global.Tree
The last fully type-checked body of this unit
-
def
position(pos: Int): Position
- Definition Classes
- CompilationUnit
-
val
problems: ArrayBuffer[Problem]
The problems reported for this unit
-
def
registerDependency(symbol: Global.Symbol): Unit
- Definition Classes
- CompilationUnit
-
val
source: SourceFile
- Definition Classes
- CompilationUnit → CompilationUnitContextApi
-
var
status: Int
The runid of the latest compiler run that typechecked this unit, or else @see NotLoaded, JustParsed
-
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
- RichCompilationUnit → CompilationUnit
- def targetPos_=(p: Global.Position): Unit
-
val
toCheck: ListBuffer[() ⇒ Unit]
things to check at end of compilation unit
things to check at end of compilation unit
- Definition Classes
- CompilationUnit
-
def
toString(): String
- Definition Classes
- CompilationUnit → AnyRef → Any
-
val
transformed: AnyRefMap[Global.Tree, Global.Tree]
- Definition Classes
- CompilationUnit
Deprecated Value Members
-
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.
-
def
defined: HashSet[Global.Symbol]
- Definition Classes
- CompilationUnit
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.9) Not supported
-
def
depends: HashSet[Global.Symbol]
- Definition Classes
- CompilationUnit
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.9) Not supported and no longer used by Zinc
-
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.
-
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.
-
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.
-
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.
-
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.
The Scala compiler and reflection APIs.