Packages

class Global extends nsc.Global with CompilerControl with ContextTrees with RichCompilationUnits with Picklers

The main class of the presentation compiler in an interactive environment such as an IDE

Source
Global.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Global
  2. Picklers
  3. RichCompilationUnits
  4. ContextTrees
  5. CompilerControl
  6. Global
  7. Parsing
  8. Reporting
  9. Positions
  10. DocComments
  11. Printers
  12. Trees
  13. PhaseAssembly
  14. Plugins
  15. CompilationUnits
  16. Closeable
  17. AutoCloseable
  18. SymbolTable
  19. SymbolTable
  20. Reporting
  21. Internals
  22. FreshNames
  23. Translations
  24. PrivateWithin
  25. ReificationSupport
  26. StdCreators
  27. StdAttachments
  28. CapturedVariables
  29. Importers
  30. TypeDebugging
  31. Positions
  32. Printers
  33. Trees
  34. AnnotationCheckers
  35. AnnotationInfos
  36. StdNames
  37. Transforms
  38. InfoTransformers
  39. BaseTypeSeqs
  40. Constants
  41. Definitions
  42. Mirrors
  43. Scopes
  44. FlagSets
  45. ExistentialsAndSkolems
  46. Kinds
  47. Variances
  48. Types
  49. FindMembers
  50. TypeConstraints
  51. TypeMaps
  52. GlbLubs
  53. CommonOwners
  54. TypeToStrings
  55. TypeComparers
  56. Symbols
  57. Names
  58. Collections
  59. Universe
  60. Universe
  61. Internals
  62. Quasiquotes
  63. Liftables
  64. Printers
  65. Mirrors
  66. StandardLiftables
  67. StandardNames
  68. StandardDefinitions
  69. ImplicitTags
  70. TypeTags
  71. Exprs
  72. Positions
  73. Annotations
  74. Constants
  75. Trees
  76. Names
  77. Scopes
  78. FlagSets
  79. Types
  80. Symbols
  81. AnyRef
  82. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Global(settings: Settings, _reporter: Reporter, projectName: String = "")

Type Members

  1. class CompilationUnit extends Global.CompilationUnitContextApi

    One unit of compilation that has been submitted to the compiler.

    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.

    Definition Classes
    CompilationUnits
    Annotations
    @nowarn()
  2. class GlobalMirror extends Roots
    Definition Classes
    Global
  3. abstract class GlobalPhase extends Phase
    Definition Classes
    Global
  4. trait GlobalStats extends ReflectStats with TypersStats with ImplicitsStats with MacrosStats with BackendStats with PatternMatchingStats
    Definition Classes
    Global
  5. class Run extends RunContextApi with RunReporting with RunParsing

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

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

    Definition Classes
    Global
    Annotations
    @nowarn()
  6. class PerRunParsing extends AnyRef
    Definition Classes
    Parsing
  7. trait RunParsing extends AnyRef
    Definition Classes
    Parsing
  8. class PerRunReporting extends (Reporting.this)#PerRunReportingBase
    Definition Classes
    Reporting
  9. case class DocComment(raw: String, pos: Global.Position = NoPosition, codePos: Global.Position = NoPosition) extends Product with Serializable
    Definition Classes
    DocComments
  10. class ExpansionLimitExceeded extends Exception
    Definition Classes
    DocComments
  11. case class UseCase(comment: Global.DocComment, body: String, pos: Global.Position) extends Product with Serializable
    Definition Classes
    DocComments
  12. class ValidatingPosAssigner extends Global.InternalTraverser with Global.PosAssigner
    Definition Classes
    Positions
  13. class CompactTreePrinter extends Global.AstTreePrinter

    A tree printer which is stingier about vertical whitespace and unnecessary punctuation than the standard one.

    A tree printer which is stingier about vertical whitespace and unnecessary punctuation than the standard one.

    Definition Classes
    Printers
  14. case class DocDef(comment: Global.DocComment, definition: Global.Tree) extends Global.Tree with Product with Serializable

    Documented definition, eliminated by analyzer

    Documented definition, eliminated by analyzer

    Definition Classes
    Trees
  15. case class InjectDerivedValue(arg: Global.Tree) extends Global.SymTree with Global.TermTree with Product with Serializable

    Derived value class injection (equivalent to: new C(arg) after erasure); only used during erasure.

    Derived value class injection (equivalent to: new C(arg) after erasure); only used during erasure. The class C is stored as a tree attachment.

    Definition Classes
    Trees
  16. case class Parens(args: List[Global.Tree]) extends Global.Tree with Product with Serializable

    Only used during parsing

    Only used during parsing

    Definition Classes
    Trees
  17. case class SelectFromArray(qualifier: Global.Tree, name: Global.Name, erasure: Global.Type) extends Global.SymTree with Global.RefTree with Global.TermTree with Product with Serializable

    Array selection <qualifier> . <name> only used during erasure

    Array selection <qualifier> . <name> only used during erasure

    Definition Classes
    Trees
  18. class Transformer extends Global.InternalTransformer
    Definition Classes
    Trees
    Annotations
    @nowarn()
  19. trait TreeCopier extends Global.InternalTreeCopierOps
    Definition Classes
    Trees
  20. case class TypeTreeWithDeferredRefCheck(precheck: Global.TypeTree)(check: () => Global.TypeTree) extends Global.Tree with Global.TypTree with Product with Serializable

    emitted by typer, eliminated by refchecks

    emitted by typer, eliminated by refchecks

    Definition Classes
    Trees
  21. case class AskDocCommentItem(sym: Global.Symbol, source: SourceFile, site: Global.Symbol, fragments: List[(Global.Symbol, SourceFile)], response: Global.Response[(String, String, Global.Position)]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  22. case class AskLinkPosItem(sym: Global.Symbol, source: SourceFile, response: Global.Response[Global.Position]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  23. case class AskLoadedTypedItem(source: SourceFile, keepLoaded: Boolean, response: Global.Response[Global.Tree]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  24. case class AskParsedEnteredItem(source: SourceFile, keepLoaded: Boolean, response: Global.Response[Global.Tree]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  25. case class AskScopeCompletionItem(pos: Global.Position, response: Global.Response[List[Global.Member]]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  26. class AskToDoFirstItem extends Global.WorkItem
    Definition Classes
    CompilerControl
  27. case class AskTypeAtItem(pos: Global.Position, response: Global.Response[Global.Tree]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  28. case class AskTypeCompletionItem(pos: Global.Position, response: Global.Response[List[Global.Member]]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  29. case class AskTypeItem(source: SourceFile, forceReload: Boolean, response: Global.Response[Global.Tree]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  30. case class FilesDeletedItem(sources: List[SourceFile], response: Global.Response[Unit]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  31. abstract class Member extends AnyRef

    Info given for every member found by completion

    Info given for every member found by completion

    Definition Classes
    CompilerControl
  32. class NoWorkScheduler extends WorkScheduler

    A do-nothing work scheduler that responds immediately with MissingResponse.

    A do-nothing work scheduler that responds immediately with MissingResponse.

    Used during compiler shutdown.

    Definition Classes
    CompilerControl
  33. case class ReloadItem(sources: List[SourceFile], response: Global.Response[Unit]) extends Global.WorkItem with Product with Serializable
    Definition Classes
    CompilerControl
  34. case class ScopeMember(sym: Global.Symbol, tpe: Global.Type, accessible: Boolean, viaImport: Global.Tree, aliasInfo: Option[Global.ScopeMember] = None) extends Global.Member with Product with Serializable
    Definition Classes
    CompilerControl
  35. case class TypeMember(sym: Global.Symbol, tpe: Global.Type, accessible: Boolean, inherited: Boolean, viaView: Global.Symbol, aliasInfo: Option[Global.ScopeMember] = None) extends Global.Member with Product with Serializable
    Definition Classes
    CompilerControl
  36. abstract class WorkItem extends () => Unit
    Definition Classes
    CompilerControl
  37. class ContextTree extends AnyRef

    A context tree contains contexts that are indexed by positions.

    A context tree contains contexts that are indexed by positions. It satisfies the following properties:

    1. All context come from compiling the same unit. 2. Child contexts have parent contexts in their outer chain. 3. The pos field of a context is the same as context.tree.pos, unless that position is transparent. In that case, pos equals the position of one of the solid descendants of context.tree. 4. Children of a context have non-overlapping increasing positions. 5. No context in the tree has a transparent position.
    Definition Classes
    ContextTrees
  38. trait AbstractTypeRef extends reflect.internal.SymbolTable.TypeRef with reflect.internal.SymbolTable.NonClassTypeRef
    Definition Classes
    Types
  39. class AbstractTypeSymbol extends reflect.internal.SymbolTable.TypeSymbol
    Definition Classes
    Symbols
  40. trait AliasTypeRef extends reflect.internal.SymbolTable.TypeRef with reflect.internal.SymbolTable.NonClassTypeRef
    Definition Classes
    Types
  41. class AliasTypeSymbol extends reflect.internal.SymbolTable.TypeSymbol
    Definition Classes
    Symbols
  42. case class Alternative extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.AlternativeApi with Product with Serializable
    Definition Classes
    Trees
  43. trait AlternativeApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  44. abstract class AlternativeExtractor extends AnyRef
    Definition Classes
    Trees
  45. trait Annotatable[Self] extends AnyRef
    Definition Classes
    AnnotationInfos
  46. case class Annotated extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.AnnotatedApi with Product with Serializable
    Definition Classes
    Trees
  47. trait AnnotatedApi extends reflect.api.Universe.TreeApi
    Definition Classes
    Trees
  48. abstract class AnnotatedExtractor extends AnyRef
    Definition Classes
    Trees
  49. case class AnnotatedType extends reflect.internal.SymbolTable.Type with reflect.internal.SymbolTable.RewrappingTypeProxy with reflect.internal.SymbolTable.AnnotatedTypeApi with Product with Serializable
    Definition Classes
    Types
  50. trait AnnotatedTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  51. abstract class AnnotatedTypeExtractor extends AnyRef
    Definition Classes
    Types
  52. type Annotation = AnnotationInfo
    Definition Classes
    AnnotationInfos → Annotations
  53. trait AnnotationApi extends AnyRef
    Definition Classes
    Annotations
  54. trait AnnotationChecker extends AnyRef
    Definition Classes
    AnnotationCheckers
  55. abstract class AnnotationExtractor extends AnyRef
    Definition Classes
    Annotations
  56. trait AnnotationFilter extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  57. abstract class AnnotationInfo extends reflect.internal.SymbolTable.AnnotationApi
    Definition Classes
    AnnotationInfos
  58. case class AntiPolyType extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types
  59. type ApiTransformer = Global.Transformer
    Definition Classes
    Trees
  60. case class AppliedTypeTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TypTree with reflect.internal.SymbolTable.AppliedTypeTreeApi with Product with Serializable
    Definition Classes
    Trees
  61. trait AppliedTypeTreeApi extends reflect.api.Universe.TypTreeApi
    Definition Classes
    Trees
  62. abstract class AppliedTypeTreeExtractor extends AnyRef
    Definition Classes
    Trees
  63. class AppliedTypeVar extends reflect.internal.SymbolTable.TypeVar
    Definition Classes
    Types
  64. case class Apply extends reflect.internal.SymbolTable.GenericApply with reflect.internal.SymbolTable.ApplyApi with Product with Serializable
    Definition Classes
    Trees
  65. trait ApplyApi extends reflect.api.Universe.GenericApplyApi
    Definition Classes
    Trees
  66. case class ApplyDynamic extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.TermTree with Product with Serializable
    Definition Classes
    Trees
  67. abstract class ApplyExtractor extends AnyRef
    Definition Classes
    Trees
  68. class ApplyImplicitView extends reflect.internal.SymbolTable.Apply
    Definition Classes
    Trees
  69. class ApplyToImplicitArgs extends reflect.internal.SymbolTable.Apply
    Definition Classes
    Trees
  70. class ArgsTypeRef extends reflect.internal.SymbolTable.TypeRef
    Definition Classes
    Types
  71. case class ArrayAnnotArg extends reflect.internal.SymbolTable.ClassfileAnnotArg with Product with Serializable
    Definition Classes
    AnnotationInfos
  72. case class ArrayValue extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with Product with Serializable
    Definition Classes
    Trees
  73. class AsSeenFromMap extends reflect.internal.SymbolTable.TypeMap with reflect.internal.SymbolTable.KeepOnlyTypeConstraints
    Definition Classes
    TypeMaps
  74. case class Assign extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.AssignApi with Product with Serializable
    Definition Classes
    Trees
  75. trait AssignApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  76. abstract class AssignExtractor extends AnyRef
    Definition Classes
    Trees
  77. final type AstTransformer = Transformer
    Definition Classes
    Trees
  78. final type AstTreePrinter = TreePrinter
    Definition Classes
    Printers
    Annotations
    @nowarn()
  79. trait Attachable extends AnyRef
    Definition Classes
    StdAttachments
  80. class BaseTypeSeq extends AnyRef
    Definition Classes
    BaseTypeSeqs
  81. case class Bind extends reflect.internal.SymbolTable.DefTree with reflect.internal.SymbolTable.BindApi with Product with Serializable
    Definition Classes
    Trees
  82. trait BindApi extends reflect.api.Universe.DefTreeApi
    Definition Classes
    Trees
  83. abstract class BindExtractor extends AnyRef
    Definition Classes
    Trees
  84. case class Block extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.BlockApi with Product with Serializable
    Definition Classes
    Trees
  85. trait BlockApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  86. abstract class BlockExtractor extends AnyRef
    Definition Classes
    Trees
  87. case class BooleanFlag extends Product with Serializable
    Definition Classes
    Printers
  88. case class BoundedWildcardType extends reflect.internal.SymbolTable.ProtoType with reflect.internal.SymbolTable.BoundedWildcardTypeApi with Product with Serializable
    Definition Classes
    Types
  89. trait BoundedWildcardTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  90. abstract class BoundedWildcardTypeExtractor extends AnyRef
    Definition Classes
    Types
  91. trait CannotHaveAttrs extends reflect.internal.SymbolTable.Tree
    Definition Classes
    Trees
  92. case class CaseDef extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.CaseDefApi with Product with Serializable
    Definition Classes
    Trees
  93. trait CaseDefApi extends reflect.api.Universe.TreeApi
    Definition Classes
    Trees
  94. abstract class CaseDefExtractor extends AnyRef
    Definition Classes
    Trees
  95. case class ChangeOwnerAttachment extends Product with Serializable
    Definition Classes
    StdAttachments
  96. class ChangeOwnerTraverser extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  97. abstract class ChildSolidDescendantsCollector extends reflect.internal.SymbolTable.Traverser
    Definition Classes
    Positions
  98. case class ClassDef extends reflect.internal.SymbolTable.ImplDef with reflect.internal.SymbolTable.ClassDefApi with Product with Serializable
    Definition Classes
    Trees
  99. trait ClassDefApi extends reflect.api.Universe.ImplDefApi
    Definition Classes
    Trees
  100. abstract class ClassDefExtractor extends AnyRef
    Definition Classes
    Trees
  101. case class ClassInfoType extends reflect.internal.SymbolTable.CompoundType with reflect.internal.SymbolTable.ClassInfoTypeApi with Product with Serializable
    Definition Classes
    Types
  102. trait ClassInfoTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  103. abstract class ClassInfoTypeExtractor extends AnyRef
    Definition Classes
    Types
  104. trait ClassMirror extends reflect.api.Universe.TemplateMirror
    Definition Classes
    Mirrors
  105. class ClassSymbol extends reflect.internal.SymbolTable.TypeSymbol with reflect.internal.SymbolTable.ClassSymbolApi
    Definition Classes
    Symbols
  106. trait ClassSymbolApi extends reflect.api.Universe.TypeSymbolApi
    Definition Classes
    Symbols
  107. class ClassUnwrapper extends reflect.internal.SymbolTable.TypeUnwrapper
    Definition Classes
    Types
  108. sealed abstract class ClassfileAnnotArg extends Product with reflect.internal.SymbolTable.JavaArgumentApi
    Definition Classes
    AnnotationInfos
  109. class CodePrinter extends reflect.internal.SymbolTable.InternalTreePrinter
    Definition Classes
    Printers
  110. class CollectTreeTraverser[T] extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  111. class CollectTypeCollector[T] extends reflect.internal.SymbolTable.TypeCollector[List[T]]
    Definition Classes
    TypeMaps
  112. abstract class CommonNames extends reflect.internal.SymbolTable.NamesApi
    Definition Classes
    StdNames
  113. class CompleteAnnotationInfo extends reflect.internal.SymbolTable.AnnotationInfo
    Definition Classes
    AnnotationInfos
  114. sealed abstract class CompletionResult extends AnyRef
  115. abstract class CompoundType extends reflect.internal.SymbolTable.Type with reflect.internal.SymbolTable.CompoundTypeApi
    Definition Classes
    Types
  116. trait CompoundTypeApi extends AnyRef
    Definition Classes
    Types
  117. case class CompoundTypeTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TypTree with reflect.internal.SymbolTable.CompoundTypeTreeApi with Product with Serializable
    Definition Classes
    Trees
  118. trait CompoundTypeTreeApi extends reflect.api.Universe.TypTreeApi
    Definition Classes
    Trees
  119. abstract class CompoundTypeTreeExtractor extends AnyRef
    Definition Classes
    Trees
  120. case class CompoundTypeTreeOriginalAttachment extends Product with Serializable
    Definition Classes
    StdAttachments
  121. case class Constant extends reflect.internal.SymbolTable.ConstantApi with Product with Serializable
    Definition Classes
    Constants
  122. abstract class ConstantApi extends AnyRef
    Definition Classes
    Constants
  123. abstract class ConstantExtractor extends AnyRef
    Definition Classes
    Constants
  124. abstract class ConstantType extends reflect.internal.SymbolTable.SingletonType with reflect.internal.SymbolTable.ConstantTypeApi
    Definition Classes
    Types
  125. trait ConstantTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  126. abstract class ConstantTypeExtractor extends AnyRef
    Definition Classes
    Types
  127. class ContainsAnyCollector extends reflect.internal.SymbolTable.ExistsTypeRefCollector
    Definition Classes
    TypeMaps
  128. class ContainsAnyKeyCollector extends reflect.internal.SymbolTable.ExistsTypeRefCollector
    Definition Classes
    TypeMaps
  129. class ContainsCollector extends reflect.internal.SymbolTable.ExistsTypeRefCollector
    Definition Classes
    TypeMaps
  130. type Context = (analyzer)#Context
    Definition Classes
    ContextTrees
  131. type Contexts = ArrayBuffer[ContextTree]
    Definition Classes
    ContextTrees
  132. case class CyclicReference extends reflect.internal.SymbolTable.TypeError with Product with Serializable
    Definition Classes
    Symbols
  133. case class DefDef extends reflect.internal.SymbolTable.ValOrDefDef with reflect.internal.SymbolTable.DefDefApi with Product with Serializable
    Definition Classes
    Trees
  134. trait DefDefApi extends reflect.api.Universe.ValOrDefDefApi
    Definition Classes
    Trees
  135. abstract class DefDefExtractor extends AnyRef
    Definition Classes
    Trees
  136. sealed abstract class DefTree extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.NameTree with reflect.internal.SymbolTable.DefTreeApi
    Definition Classes
    Trees
  137. trait DefTreeApi extends reflect.api.Universe.SymTreeApi with reflect.api.Universe.NameTreeApi
    Definition Classes
    Trees
  138. trait DefinitionsApi extends reflect.api.Universe.StandardTypes
    Definition Classes
    StandardDefinitions
  139. abstract class DefinitionsClass extends reflect.internal.SymbolTable.DefinitionsApi with reflect.internal.SymbolTable.ValueClassDefinitions
    Definition Classes
    Definitions
  140. type Diff = (Int, Int, String)
    Definition Classes
    Picklers
  141. class DottyOpaqueTypeAlias extends AnyRef
    Definition Classes
    StdAttachments
  142. class DottyParameterisedTrait extends AnyRef
    Definition Classes
    StdAttachments
  143. abstract case class ErasedValueType extends reflect.internal.SymbolTable.UniqueType with Product with Serializable
    Definition Classes
    Types
  144. class ErroneousAnnotation extends reflect.internal.SymbolTable.CompleteAnnotationInfo
    Definition Classes
    AnnotationInfos
  145. class ErrorScope extends reflect.internal.SymbolTable.Scope
    Definition Classes
    Scopes
  146. class ExistentialExtrapolation extends reflect.internal.SymbolTable.VariancedTypeMap
    Definition Classes
    TypeMaps
  147. case class ExistentialType extends reflect.internal.SymbolTable.Type with reflect.internal.SymbolTable.RewrappingTypeProxy with reflect.internal.SymbolTable.ExistentialTypeApi with Product with Serializable
    Definition Classes
    Types
  148. trait ExistentialTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  149. abstract class ExistentialTypeExtractor extends AnyRef
    Definition Classes
    Types
  150. case class ExistentialTypeTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TypTree with reflect.internal.SymbolTable.ExistentialTypeTreeApi with Product with Serializable
    Definition Classes
    Trees
  151. trait ExistentialTypeTreeApi extends reflect.api.Universe.TypTreeApi
    Definition Classes
    Trees
  152. abstract class ExistentialTypeTreeExtractor extends AnyRef
    Definition Classes
    Trees
  153. abstract class ExistsTypeRefCollector extends reflect.internal.SymbolTable.TypeCollector[Boolean]
    Definition Classes
    TypeMaps
  154. trait Expr[+T] extends Equals with Serializable
    Definition Classes
    Exprs
  155. final class ExtraLazyAnnotationInfo extends reflect.internal.SymbolTable.LazyAnnotationInfo
    Definition Classes
    AnnotationInfos
  156. trait FieldMirror extends AnyRef
    Definition Classes
    Mirrors
  157. class FilterTreeTraverser extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  158. class FilterTypeCollector extends reflect.internal.SymbolTable.TypeCollector[List[reflect.internal.SymbolTable.Type]]
    Definition Classes
    TypeMaps
  159. class FindTreeTraverser extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  160. class FindTypeCollector extends reflect.internal.SymbolTable.TypeCollector[Option[reflect.internal.SymbolTable.Type]]
    Definition Classes
    TypeMaps
  161. case class FixedMirrorTreeCreator extends TreeCreator with Product with Serializable
    Definition Classes
    StdCreators
  162. case class FixedMirrorTypeCreator extends TypeCreator with Product with Serializable
    Definition Classes
    StdCreators
  163. trait FlagAgnosticCompleter extends reflect.internal.SymbolTable.LazyType
    Definition Classes
    Types
  164. trait FlagAssigningCompleter extends reflect.internal.SymbolTable.LazyType
    Definition Classes
    Types
  165. trait FlagOps extends Any
    Definition Classes
    FlagSets
  166. type FlagSet = Long
    Definition Classes
    FlagSets → FlagSets
  167. trait FlagValues extends AnyRef
    Definition Classes
    FlagSets
  168. abstract case class FoldableConstantType extends reflect.internal.SymbolTable.ConstantType with Product with Serializable
    Definition Classes
    Types
  169. class ForEachTypeTraverser extends reflect.internal.SymbolTable.TypeTraverser
    Definition Classes
    TypeMaps
  170. class ForeachPartialTreeTraverser extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  171. class ForeachTreeTraverser extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  172. trait FreeSymbol extends reflect.internal.SymbolTable.Symbol
    Definition Classes
    Symbols
  173. class FreeTermSymbol extends reflect.internal.SymbolTable.TermSymbol with reflect.internal.SymbolTable.FreeSymbol with reflect.internal.SymbolTable.FreeTermSymbolApi
    Definition Classes
    Symbols
  174. trait FreeTermSymbolApi extends reflect.api.Universe.TermSymbolApi
    Definition Classes
    Internals
  175. class FreeTypeSymbol extends reflect.internal.SymbolTable.TypeSkolem with reflect.internal.SymbolTable.FreeSymbol with reflect.internal.SymbolTable.FreeTypeSymbolApi
    Definition Classes
    Symbols
  176. trait FreeTypeSymbolApi extends reflect.api.Universe.TypeSymbolApi
    Definition Classes
    Internals
  177. class FreshNameExtractor extends AnyRef
    Definition Classes
    FreshNames
  178. case class Function extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.FunctionApi with Product with Serializable
    Definition Classes
    Trees
  179. trait FunctionApi extends reflect.api.Universe.TermTreeApi with reflect.api.Universe.SymTreeApi
    Definition Classes
    Trees
  180. abstract class FunctionExtractor extends AnyRef
    Definition Classes
    Trees
  181. abstract class GenericApply extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.GenericApplyApi
    Definition Classes
    Trees
  182. trait GenericApplyApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  183. class HKTypeVar extends reflect.internal.SymbolTable.TypeVar
    Definition Classes
    Types
  184. case class Ident extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.RefTree with reflect.internal.SymbolTable.IdentApi with Product with Serializable
    Definition Classes
    Trees
  185. trait IdentApi extends reflect.api.Universe.RefTreeApi
    Definition Classes
    Trees
  186. abstract class IdentExtractor extends AnyRef
    Definition Classes
    Trees
  187. case class If extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.IfApi with Product with Serializable
    Definition Classes
    Trees
  188. trait IfApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  189. abstract class IfExtractor extends AnyRef
    Definition Classes
    Trees
  190. sealed abstract class ImplDef extends reflect.internal.SymbolTable.MemberDef with reflect.internal.SymbolTable.ImplDefApi
    Definition Classes
    Trees
  191. trait ImplDefApi extends reflect.api.Universe.MemberDefApi
    Definition Classes
    Trees
  192. case class Import extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.ImportApi with Product with Serializable
    Definition Classes
    Trees
  193. trait ImportApi extends reflect.api.Universe.SymTreeApi
    Definition Classes
    Trees
  194. abstract class ImportExtractor extends AnyRef
    Definition Classes
    Trees
  195. case class ImportSelector extends reflect.internal.SymbolTable.ImportSelectorApi with Product with Serializable
    Definition Classes
    Trees
  196. trait ImportSelectorApi extends AnyRef
    Definition Classes
    Trees
  197. abstract class ImportSelectorExtractor extends AnyRef
    Definition Classes
    Trees
  198. case class ImportType extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types
  199. trait ImportableAttachment extends AnyRef
    Definition Classes
    StdAttachments
  200. trait Importer extends AnyRef
    Definition Classes
    Internals
  201. abstract class InfoTransformer extends AnyRef
    Definition Classes
    InfoTransformers
  202. abstract class InlineAnnotatedAttachment extends AnyRef
    Definition Classes
    StdAttachments
  203. trait InstanceMirror extends AnyRef
    Definition Classes
    Mirrors
  204. class InstantiateDependentMap extends reflect.internal.SymbolTable.TypeMap with reflect.internal.SymbolTable.KeepOnlyTypeConstraints
    Definition Classes
    TypeMaps
  205. type Internal = MacroInternalApi
    Definition Classes
    Internals → Internals
  206. trait InternalApi extends AnyRef
    Definition Classes
    Internals
  207. class InternalTransformer extends reflect.internal.SymbolTable.Transformer
    Definition Classes
    Trees
  208. class InternalTraverser extends reflect.internal.SymbolTable.Traverser
    Definition Classes
    Trees
  209. abstract class InternalTreeCopierOps extends reflect.internal.SymbolTable.TreeCopierOps
    Definition Classes
    Trees
  210. final type InternalTreePrinter = Global.TreePrinter
    Definition Classes
    Printers
  211. class InvalidateTypeCaches extends reflect.internal.SymbolTable.TypeFolder
    Definition Classes
    Types
  212. type JavaArgument = ClassfileAnnotArg
    Definition Classes
    AnnotationInfos → Annotations
  213. class JavaKeywords extends AnyRef
    Definition Classes
    StdNames
  214. class JavaRestrictedIdentifiers extends AnyRef
    Definition Classes
    StdNames
  215. trait KeepOnlyTypeConstraints extends reflect.internal.SymbolTable.TypeMap with reflect.internal.SymbolTable.AnnotationFilter
    Definition Classes
    TypeMaps
  216. abstract class Keywords extends reflect.internal.SymbolTable.CommonNames
    Definition Classes
    StdNames
  217. abstract class Kind extends AnyRef
    Definition Classes
    Kinds
  218. case class KindErrors extends Product with Serializable
    Definition Classes
    Kinds
  219. case class LabelDef extends reflect.internal.SymbolTable.DefTree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.LabelDefApi with Product with Serializable
    Definition Classes
    Trees
  220. trait LabelDefApi extends reflect.api.Universe.DefTreeApi with reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  221. abstract class LabelDefExtractor extends AnyRef
    Definition Classes
    Trees
  222. class LazyAnnotationInfo extends reflect.internal.SymbolTable.AnnotationInfo
    Definition Classes
    AnnotationInfos
  223. final type LazyAstTreeCopier = LazyTreeCopier
    Definition Classes
    Trees
    Annotations
    @nowarn()
  224. abstract class LazyPolyType extends reflect.internal.SymbolTable.LazyType
    Definition Classes
    Types
  225. abstract class LazyType extends reflect.internal.SymbolTable.Type
    Definition Classes
    Types
  226. trait Liftable[T] extends AnyRef
    Definition Classes
    Liftables
  227. case class Literal extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.LiteralApi with Product with Serializable
    Definition Classes
    Trees
  228. case class LiteralAnnotArg extends reflect.internal.SymbolTable.ClassfileAnnotArg with Product with Serializable
    Definition Classes
    AnnotationInfos
  229. trait LiteralApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  230. abstract class LiteralExtractor extends AnyRef
    Definition Classes
    Trees
  231. abstract case class LiteralType extends reflect.internal.SymbolTable.ConstantType with Product with Serializable
    Definition Classes
    Types
  232. class LocalOwnersTraverser extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  233. class Locator extends reflect.internal.SymbolTable.Traverser
    Definition Classes
    Positions
  234. case class LookupAmbiguityWarning extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  235. case class LookupAmbiguous extends reflect.internal.SymbolTable.NameLookup with Product with Serializable
    Definition Classes
    Scopes
  236. case class LookupInaccessible extends reflect.internal.SymbolTable.NameLookup with Product with Serializable
    Definition Classes
    Scopes
  237. case class LookupSucceeded extends reflect.internal.SymbolTable.NameLookup with Product with Serializable
    Definition Classes
    Scopes
  238. trait MacroInternalApi extends reflect.macros.Universe.InternalApi
    Definition Classes
    Universe
  239. class MalformedType extends reflect.internal.SymbolTable.TypeError
    Definition Classes
    Types
  240. class MappedBaseTypeSeq extends reflect.internal.SymbolTable.BaseTypeSeq
    Definition Classes
    BaseTypeSeqs
  241. case class Match extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.MatchApi with Product with Serializable
    Definition Classes
    Trees
  242. trait MatchApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  243. abstract class MatchExtractor extends AnyRef
    Definition Classes
    Trees
  244. sealed abstract class MemberDef extends reflect.internal.SymbolTable.DefTree with reflect.internal.SymbolTable.MemberDefApi
    Definition Classes
    Trees
  245. trait MemberDefApi extends reflect.api.Universe.DefTreeApi
    Definition Classes
    Trees
  246. type MemberScope = Scope
    Definition Classes
    Scopes → Scopes
  247. trait MemberScopeApi extends reflect.api.Universe.ScopeApi
    Definition Classes
    Scopes
  248. trait MethodMirror extends AnyRef
    Definition Classes
    Mirrors
  249. class MethodSymbol extends reflect.internal.SymbolTable.TermSymbol with reflect.internal.SymbolTable.MethodSymbolApi
    Definition Classes
    Symbols
  250. trait MethodSymbolApi extends reflect.api.Universe.TermSymbolApi
    Definition Classes
    Symbols
  251. case class MethodType extends reflect.internal.SymbolTable.Type with reflect.internal.SymbolTable.MethodTypeApi with Product with Serializable
    Definition Classes
    Types
  252. trait MethodTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  253. abstract class MethodTypeExtractor extends AnyRef
    Definition Classes
    Types
  254. abstract type Mirror >: Null <: RootsBase
    Definition Classes
    Mirrors → Mirrors
  255. class MissingAliasControl extends ControlThrowable
    Definition Classes
    Types
  256. class MissingTypeControl extends ControlThrowable
    Definition Classes
    Types
  257. case class Modifiers extends reflect.internal.SymbolTable.ModifiersApi with HasFlags with Product with Serializable
    Definition Classes
    Trees
  258. abstract class ModifiersApi extends AnyRef
    Definition Classes
    Trees
  259. abstract class ModifiersExtractor extends AnyRef
    Definition Classes
    Trees
  260. class ModuleClassSymbol extends reflect.internal.SymbolTable.ClassSymbol
    Definition Classes
    Symbols
  261. case class ModuleDef extends reflect.internal.SymbolTable.ImplDef with reflect.internal.SymbolTable.ModuleDefApi with Product with Serializable
    Definition Classes
    Trees
  262. trait ModuleDefApi extends reflect.api.Universe.ImplDefApi
    Definition Classes
    Trees
  263. abstract class ModuleDefExtractor extends AnyRef
    Definition Classes
    Trees
  264. trait ModuleMirror extends reflect.api.Universe.TemplateMirror
    Definition Classes
    Mirrors
  265. class ModuleSymbol extends reflect.internal.SymbolTable.TermSymbol with reflect.internal.SymbolTable.ModuleSymbolApi
    Definition Classes
    Symbols
  266. trait ModuleSymbolApi extends reflect.api.Universe.TermSymbolApi
    Definition Classes
    Symbols
  267. class ModuleTypeRef extends reflect.internal.SymbolTable.NoArgsTypeRef
    Definition Classes
    Types
  268. sealed abstract class Name extends reflect.internal.Names.NameApi with NameHasIsEmpty with CharSequence
    Definition Classes
    Names
  269. abstract class NameApi extends AnyRef
    Definition Classes
    Names
  270. sealed trait NameHasIsEmpty extends AnyRef
    Definition Classes
    Names
  271. sealed trait NameLookup extends AnyRef
    Definition Classes
    Scopes
  272. case class NamePos extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  273. trait NameTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.NameTreeApi
    Definition Classes
    Trees
  274. trait NameTreeApi extends reflect.api.Universe.TreeApi
    Definition Classes
    Trees
  275. case class NamedArg extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.NamedArgApi with Product with Serializable
    Definition Classes
    Trees
  276. trait NamedArgApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  277. abstract class NamedArgExtractor extends AnyRef
    Definition Classes
    Trees
  278. case class NamedType extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types
  279. trait NamesApi extends AnyRef
    Definition Classes
    StandardNames
  280. case class NestedAnnotArg extends reflect.internal.SymbolTable.ClassfileAnnotArg with Product with Serializable
    Definition Classes
    AnnotationInfos
  281. case class New extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.NewApi with Product with Serializable
    Definition Classes
    Trees
  282. trait NewApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  283. abstract class NewExtractor extends AnyRef
    Definition Classes
    Trees
  284. class NoArgsTypeRef extends reflect.internal.SymbolTable.TypeRef
    Definition Classes
    Types
  285. class NoCommonType extends ControlThrowable
    Definition Classes
    Types
  286. class NoSymbol extends reflect.internal.SymbolTable.Symbol
    Definition Classes
    Symbols
  287. trait NonClassTypeRef extends reflect.internal.SymbolTable.TypeRef
    Definition Classes
    Types
  288. case class NullaryMethodType extends reflect.internal.SymbolTable.Type with reflect.internal.SymbolTable.NullaryMethodTypeApi with Product with Serializable
    Definition Classes
    Types
  289. trait NullaryMethodTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  290. abstract class NullaryMethodTypeExtractor extends AnyRef
    Definition Classes
    Types
  291. class OnTypeError[T] extends AnyRef
  292. final case class OverloadedArgProto extends reflect.internal.SymbolTable.ProtoType with reflect.internal.SymbolTable.SimpleTypeProxy with Product with Serializable
    Definition Classes
    Types
  293. case class OverloadedType extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types
  294. class PackageClassInfoType extends reflect.internal.SymbolTable.ClassInfoType
    Definition Classes
    Types
  295. class PackageClassSymbol extends reflect.internal.SymbolTable.ModuleClassSymbol
    Definition Classes
    Symbols
  296. case class PackageDef extends reflect.internal.SymbolTable.MemberDef with reflect.internal.SymbolTable.PackageDefApi with Product with Serializable
    Definition Classes
    Trees
  297. trait PackageDefApi extends reflect.api.Universe.MemberDefApi
    Definition Classes
    Trees
  298. abstract class PackageDefExtractor extends AnyRef
    Definition Classes
    Trees
  299. class PackageObjectClassSymbol extends reflect.internal.SymbolTable.ModuleClassSymbol
    Definition Classes
    Symbols
  300. class PackageTypeRef extends reflect.internal.SymbolTable.ModuleTypeRef
    Definition Classes
    Types
  301. abstract class PerRunReportingBase extends AnyRef
    Definition Classes
    Reporting
  302. type Period = Int
    Definition Classes
    SymbolTable
  303. case class PermittedSubclassSymbols extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  304. case class PermittedSubclasses extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  305. trait PlainAttachment extends reflect.internal.SymbolTable.ImportableAttachment
    Definition Classes
    StdAttachments
  306. case class PolyType extends reflect.internal.SymbolTable.Type with reflect.internal.SymbolTable.PolyTypeApi with Product with Serializable
    Definition Classes
    Types
  307. trait PolyTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  308. abstract class PolyTypeExtractor extends AnyRef
    Definition Classes
    Types
  309. trait PosAssigner extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Positions
  310. type Position = reflect.internal.util.Position
    Definition Classes
    Positions → Positions
  311. class ProperTypeKind extends reflect.internal.SymbolTable.Kind
    Definition Classes
    Kinds
  312. abstract class ProtoType extends reflect.internal.SymbolTable.Type
    Definition Classes
    Types
  313. class QualTypeSymAttachment extends AnyRef
    Definition Classes
    StdAttachments
  314. implicit class Quasiquote extends AnyRef
    Definition Classes
    Quasiquotes
  315. class RawTreePrinter extends reflect.internal.SymbolTable.TreePrinter
    Definition Classes
    Printers
  316. case class RecoverableCyclicReference extends reflect.internal.SymbolTable.TypeError with Product with Serializable
    Definition Classes
    Types
  317. trait RefTree extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.NameTree with reflect.internal.SymbolTable.RefTreeApi
    Definition Classes
    Trees
  318. trait RefTreeApi extends reflect.api.Universe.SymTreeApi with reflect.api.Universe.NameTreeApi
    Definition Classes
    Trees
  319. abstract class RefTreeExtractor extends AnyRef
    Definition Classes
    Trees
  320. case class ReferenceToBoxed extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.ReferenceToBoxedApi with Product with Serializable
    Definition Classes
    Trees
  321. trait ReferenceToBoxedApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Internals
  322. abstract class ReferenceToBoxedExtractor extends AnyRef
    Definition Classes
    Internals
  323. case class RefinedType extends reflect.internal.SymbolTable.CompoundType with reflect.internal.SymbolTable.RefinedTypeApi with Product with Serializable
    Definition Classes
    Types
  324. final class RefinedType0 extends reflect.internal.SymbolTable.RefinedType
    Definition Classes
    Types
  325. trait RefinedTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  326. abstract class RefinedTypeExtractor extends AnyRef
    Definition Classes
    Types
  327. class RefinementClassSymbol extends reflect.internal.SymbolTable.ClassSymbol
    Definition Classes
    Symbols
  328. class RefinementTypeRef extends reflect.internal.SymbolTable.NoArgsTypeRef
    Definition Classes
    Types
  329. trait ReflectStats extends BaseTypeSeqsStats with TypesStats with SymbolTableStats with TreesStats with SymbolsStats with ScopeStats
    Definition Classes
    SymbolTable
  330. trait ReflectiveMirror extends reflect.api.Mirror[Mirrors.this.type]
    Definition Classes
    Mirrors
  331. trait ReificationSupportApi extends AnyRef
    Definition Classes
    Internals
  332. class ReificationSupportImpl extends reflect.internal.SymbolTable.ReificationSupportApi
    Definition Classes
    ReificationSupport
  333. case class RepeatedType extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types
  334. type Response[T] = interactive.Response[T]
    Definition Classes
    CompilerControl
  335. type ResponseMap = Map[SourceFile, Set[Response[Tree]]]
  336. case class Return extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.ReturnApi with Product with Serializable
    Definition Classes
    Trees
  337. trait ReturnApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  338. abstract class ReturnExtractor extends AnyRef
    Definition Classes
    Trees
  339. trait RewrappingTypeProxy extends reflect.internal.SymbolTable.Type with reflect.internal.SymbolTable.SimpleTypeProxy
    Definition Classes
    Types
  340. trait RootSymbol extends reflect.internal.SymbolTable.Symbol
    Definition Classes
    Mirrors
  341. abstract class Roots extends reflect.internal.SymbolTable.RootsBase
    Definition Classes
    Mirrors
  342. abstract class RootsBase extends reflect.api.Mirror[Mirrors.this.type]
    Definition Classes
    Mirrors
  343. type RunId = Int
    Definition Classes
    SymbolTable
  344. trait RunReporting extends AnyRef
    Definition Classes
    Reporting
  345. type RuntimeClass = Class[_]
    Definition Classes
    Global → Mirrors
  346. trait RuntimeClassApi extends AnyRef
    Definition Classes
    Mirrors
  347. trait RuntimeMirror extends reflect.api.Mirror[Mirrors.this.type] with reflect.api.Universe.ReflectiveMirror
    Definition Classes
    Mirrors
  348. case class SAMFunction extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  349. class Scope extends AbstractIterable[reflect.internal.SymbolTable.Symbol] with reflect.internal.SymbolTable.ScopeApi with reflect.internal.SymbolTable.MemberScopeApi
    Definition Classes
    Scopes
  350. trait ScopeApi extends Iterable[reflect.api.Universe.Symbol]
    Definition Classes
    Scopes
  351. class ScopeEntry extends AnyRef
    Definition Classes
    Scopes
  352. case class Select extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.RefTree with reflect.internal.SymbolTable.SelectApi with Product with Serializable
    Definition Classes
    Trees
  353. trait SelectApi extends reflect.api.Universe.RefTreeApi
    Definition Classes
    Trees
  354. abstract class SelectExtractor extends AnyRef
    Definition Classes
    Trees
  355. case class SelectFromTypeTree extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.RefTree with reflect.internal.SymbolTable.TypTree with reflect.internal.SymbolTable.SelectFromTypeTreeApi with Product with Serializable
    Definition Classes
    Trees
  356. trait SelectFromTypeTreeApi extends reflect.api.Universe.TypTreeApi with reflect.api.Universe.RefTreeApi
    Definition Classes
    Trees
  357. abstract class SelectFromTypeTreeExtractor extends AnyRef
    Definition Classes
    Trees
  358. trait SimpleTypeProxy extends reflect.internal.SymbolTable.Type
    Definition Classes
    Types
  359. abstract case class SingleType extends reflect.internal.SymbolTable.SingletonType with reflect.internal.SymbolTable.SingleTypeApi with Product with Serializable
    Definition Classes
    Types
  360. trait SingleTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  361. abstract class SingleTypeExtractor extends AnyRef
    Definition Classes
    Types
  362. abstract class SingletonType extends reflect.internal.SymbolTable.SubType with reflect.internal.SymbolTable.SimpleTypeProxy with reflect.internal.SymbolTable.SingletonTypeApi
    Definition Classes
    Types
  363. trait SingletonTypeApi extends AnyRef
    Definition Classes
    Types
  364. case class SingletonTypeTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TypTree with reflect.internal.SymbolTable.SingletonTypeTreeApi with Product with Serializable
    Definition Classes
    Trees
  365. trait SingletonTypeTreeApi extends reflect.api.Universe.TypTreeApi
    Definition Classes
    Trees
  366. abstract class SingletonTypeTreeExtractor extends AnyRef
    Definition Classes
    Trees
  367. abstract class StandardImporter extends reflect.internal.SymbolTable.Importer
    Definition Classes
    Importers
  368. trait StandardLiftableInstances extends AnyRef
    Definition Classes
    StandardLiftables
  369. trait StandardTypes extends AnyRef
    Definition Classes
    StandardDefinitions
  370. trait StandardUnliftableInstances extends AnyRef
    Definition Classes
    StandardLiftables
  371. case class Star extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.StarApi with Product with Serializable
    Definition Classes
    Trees
  372. trait StarApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  373. abstract class StarExtractor extends AnyRef
    Definition Classes
    Trees
  374. final type StrictAstTreeCopier = StrictTreeCopier
    Definition Classes
    Trees
    Annotations
    @nowarn()
  375. class StubClassSymbol extends reflect.internal.SymbolTable.ClassSymbol with reflect.internal.SymbolTable.StubSymbol
    Definition Classes
    Symbols
  376. trait StubSymbol extends reflect.internal.SymbolTable.Symbol
    Definition Classes
    Symbols
  377. class StubTermSymbol extends reflect.internal.SymbolTable.TermSymbol with reflect.internal.SymbolTable.StubSymbol
    Definition Classes
    Symbols
  378. abstract class SubType extends reflect.internal.SymbolTable.UniqueType
    Definition Classes
    Types
  379. final case class SubTypePair extends Product with Serializable
    Definition Classes
    TypeComparers
  380. case class SubpatternsAttachment extends Product with Serializable
    Definition Classes
    StdAttachments
  381. abstract class SubstMap[T >: Null] extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  382. class SubstSymMap extends reflect.internal.SymbolTable.SubstMap[reflect.internal.SymbolTable.Symbol]
    Definition Classes
    TypeMaps
  383. class SubstThisMap extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  384. class SubstTypeMap extends reflect.internal.SymbolTable.SubstMap[reflect.internal.SymbolTable.Type]
    Definition Classes
    TypeMaps
  385. class SubstWildcardMap extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  386. case class Super extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.SuperApi with Product with Serializable
    Definition Classes
    Trees
  387. trait SuperApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  388. abstract class SuperExtractor extends AnyRef
    Definition Classes
    Trees
  389. abstract case class SuperType extends reflect.internal.SymbolTable.SingletonType with reflect.internal.SymbolTable.SuperTypeApi with Product with Serializable
    Definition Classes
    Types
  390. trait SuperTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  391. abstract class SuperTypeExtractor extends AnyRef
    Definition Classes
    Types
  392. abstract class SymLoader extends reflect.internal.SymbolTable.LazyType
    Definition Classes
    SymbolTable
  393. abstract class SymTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.SymTreeApi
    Definition Classes
    Trees
  394. trait SymTreeApi extends reflect.api.Universe.TreeApi
    Definition Classes
    Trees
  395. abstract class Symbol extends reflect.internal.SymbolTable.SymbolContextApiImpl with HasFlags with reflect.internal.SymbolTable.Annotatable[reflect.internal.SymbolTable.Symbol] with reflect.internal.SymbolTable.Attachable
    Definition Classes
    Symbols
  396. trait SymbolApi extends AnyRef
    Definition Classes
    Symbols
  397. abstract class SymbolContextApiImpl extends reflect.internal.SymbolTable.SymbolApi
    Definition Classes
    Symbols
  398. sealed abstract class SymbolNames extends AnyRef
    Definition Classes
    StdNames
  399. case class SymbolOps extends Product with Serializable
    Definition Classes
    Symbols
  400. type SymbolPair = Global.overridingPairs.SymbolPair
    Definition Classes
    Global
  401. trait SymbolTableInternal extends reflect.internal.SymbolTable.MacroInternalApi
    Definition Classes
    Internals
  402. case class Template extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.TemplateApi with Product with Serializable
    Definition Classes
    Trees
  403. trait TemplateApi extends reflect.api.Universe.SymTreeApi
    Definition Classes
    Trees
  404. abstract class TemplateExtractor extends AnyRef
    Definition Classes
    Trees
  405. trait TemplateMirror extends AnyRef
    Definition Classes
    Mirrors
  406. final class TermName extends Name with reflect.internal.Names.TermNameApi
    Definition Classes
    Names
  407. trait TermNameApi extends AnyRef
    Definition Classes
    Names
  408. abstract class TermNameExtractor extends AnyRef
    Definition Classes
    Names
  409. abstract class TermNames extends reflect.internal.SymbolTable.Keywords with reflect.internal.SymbolTable.TermNamesApi
    Definition Classes
    StdNames
  410. trait TermNamesApi extends reflect.api.Universe.NamesApi
    Definition Classes
    StandardNames
  411. class TermSymbol extends reflect.internal.SymbolTable.Symbol with reflect.internal.SymbolTable.TermSymbolApi
    Definition Classes
    Symbols
  412. trait TermSymbolApi extends reflect.api.Universe.SymbolApi
    Definition Classes
    Symbols
  413. trait TermTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTreeApi
    Definition Classes
    Trees
  414. trait TermTreeApi extends reflect.api.Universe.TreeApi
    Definition Classes
    Trees
  415. case class This extends reflect.internal.SymbolTable.SymTree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.ThisApi with Product with Serializable
    Definition Classes
    Trees
  416. trait ThisApi extends reflect.api.Universe.TermTreeApi with reflect.api.Universe.SymTreeApi
    Definition Classes
    Trees
  417. abstract class ThisExtractor extends AnyRef
    Definition Classes
    Trees
  418. type ThisPlatform = JavaPlatform { val global: Global.this.type }
    Definition Classes
    Global
  419. class ThisSubstituter extends reflect.internal.SymbolTable.InternalTransformer
    Definition Classes
    Trees
  420. abstract case class ThisType extends reflect.internal.SymbolTable.SingletonType with reflect.internal.SymbolTable.ThisTypeApi with Product with Serializable
    Definition Classes
    Types
  421. trait ThisTypeApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  422. abstract class ThisTypeExtractor extends AnyRef
    Definition Classes
    Types
  423. case class Throw extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.ThrowApi with Product with Serializable
    Definition Classes
    Trees
  424. trait ThrowApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  425. abstract class ThrowExtractor extends AnyRef
    Definition Classes
    Trees
  426. class Traverser extends AnyRef
    Definition Classes
    Trees
  427. abstract class Tree extends reflect.internal.SymbolTable.TreeContextApiImpl with reflect.internal.SymbolTable.Attachable with Product
    Definition Classes
    Trees
  428. trait TreeApi extends Product
    Definition Classes
    Trees
  429. abstract class TreeContextApiImpl extends reflect.internal.SymbolTable.TreeApi
    Definition Classes
    Trees
  430. abstract class TreeCopierOps extends AnyRef
    Definition Classes
    Trees
  431. trait TreeGen extends AnyRef
    Definition Classes
    Universe
  432. class TreeReplacer extends reflect.internal.SymbolTable.InternalTransformer
    Definition Classes
    Trees
  433. trait TreeStackTraverser extends reflect.internal.SymbolTable.Traverser
    Definition Classes
    Trees
  434. class TreeSubstituter extends reflect.internal.SymbolTable.InternalTransformer
    Definition Classes
    Trees
  435. class TreeSymSubstTraverser extends reflect.internal.SymbolTable.TypeMapTreeSubstituter
    Definition Classes
    Trees
  436. class TreeSymSubstituter extends reflect.internal.SymbolTable.InternalTransformer
    Definition Classes
    Trees
  437. class TreeTypeSubstituter extends reflect.internal.SymbolTable.TypeMapTreeSubstituter
    Definition Classes
    Trees
  438. case class Try extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.TryApi with Product with Serializable
    Definition Classes
    Trees
  439. trait TryApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  440. abstract class TryExtractor extends AnyRef
    Definition Classes
    Trees
  441. trait TypTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TypTreeApi
    Definition Classes
    Trees
  442. trait TypTreeApi extends reflect.api.Universe.TreeApi
    Definition Classes
    Trees
  443. abstract class Type extends reflect.internal.SymbolTable.TypeApiImpl with reflect.internal.SymbolTable.Annotatable[reflect.internal.SymbolTable.Type]
    Definition Classes
    Types
  444. abstract class TypeApi extends AnyRef
    Definition Classes
    Types
  445. abstract class TypeApiImpl extends reflect.internal.SymbolTable.TypeApi
    Definition Classes
    Types
  446. case class TypeApply extends reflect.internal.SymbolTable.GenericApply with reflect.internal.SymbolTable.TypeApplyApi with Product with Serializable
    Definition Classes
    Trees
  447. trait TypeApplyApi extends reflect.api.Universe.GenericApplyApi
    Definition Classes
    Trees
  448. abstract class TypeApplyExtractor extends AnyRef
    Definition Classes
    Trees
  449. abstract case class TypeBounds extends reflect.internal.SymbolTable.SubType with reflect.internal.SymbolTable.TypeBoundsApi with Product with Serializable
    Definition Classes
    Types
  450. trait TypeBoundsApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  451. abstract class TypeBoundsExtractor extends AnyRef
    Definition Classes
    Types
  452. case class TypeBoundsTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TypTree with reflect.internal.SymbolTable.TypeBoundsTreeApi with Product with Serializable
    Definition Classes
    Trees
  453. trait TypeBoundsTreeApi extends reflect.api.Universe.TypTreeApi
    Definition Classes
    Trees
  454. abstract class TypeBoundsTreeExtractor extends AnyRef
    Definition Classes
    Trees
  455. abstract class TypeCollector[T] extends reflect.internal.SymbolTable.TypeFolder
    Definition Classes
    TypeMaps
  456. class TypeConKind extends reflect.internal.SymbolTable.Kind
    Definition Classes
    Kinds
  457. class TypeConstraint extends AnyRef
    Definition Classes
    TypeConstraints
  458. case class TypeDef extends reflect.internal.SymbolTable.MemberDef with reflect.internal.SymbolTable.TypeDefApi with Product with Serializable
    Definition Classes
    Trees
  459. trait TypeDefApi extends reflect.api.Universe.MemberDefApi
    Definition Classes
    Trees
  460. abstract class TypeDefExtractor extends AnyRef
    Definition Classes
    Trees
  461. class TypeError extends Throwable
    Definition Classes
    Types
  462. abstract class TypeFolder extends (reflect.internal.SymbolTable.Type) => Unit
    Definition Classes
    TypeMaps
  463. abstract class TypeMap extends (reflect.internal.SymbolTable.Type) => reflect.internal.SymbolTable.Type
    Definition Classes
    TypeMaps
  464. class TypeMapTreeSubstituter extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Trees
  465. final class TypeName extends Name with reflect.internal.Names.TypeNameApi
    Definition Classes
    Names
  466. trait TypeNameApi extends AnyRef
    Definition Classes
    Names
  467. abstract class TypeNameExtractor extends AnyRef
    Definition Classes
    Names
  468. abstract class TypeNames extends reflect.internal.SymbolTable.Keywords with reflect.internal.SymbolTable.TypeNamesApi
    Definition Classes
    StdNames
  469. trait TypeNamesApi extends reflect.api.Universe.NamesApi
    Definition Classes
    StandardNames
  470. case class TypeParamVarargsAttachment extends Product with Serializable
    Definition Classes
    StdAttachments
  471. abstract case class TypeRef extends reflect.internal.SymbolTable.UniqueType with reflect.internal.SymbolTable.TypeRefApi with Product with Serializable
    Definition Classes
    Types
  472. trait TypeRefApi extends reflect.api.Universe.TypeApi
    Definition Classes
    Types
  473. abstract class TypeRefExtractor extends AnyRef
    Definition Classes
    Types
  474. class TypeSkolem extends reflect.internal.SymbolTable.TypeSymbol
    Definition Classes
    Symbols
  475. abstract class TypeSymbol extends reflect.internal.SymbolTable.Symbol with reflect.internal.SymbolTable.TypeSymbolApi
    Definition Classes
    Symbols
  476. trait TypeSymbolApi extends reflect.api.Universe.SymbolApi
    Definition Classes
    Symbols
  477. trait TypeTag[T] extends reflect.api.Universe.WeakTypeTag[T] with Equals with Serializable
    Definition Classes
    TypeTags
    Annotations
    @implicitNotFound()
  478. abstract class TypeTraverser extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  479. case class TypeTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TypTree with reflect.internal.SymbolTable.TypeTreeApi with Product with Serializable
    Definition Classes
    Trees
  480. trait TypeTreeApi extends reflect.api.Universe.TypTreeApi
    Definition Classes
    Trees
  481. abstract class TypeTreeExtractor extends AnyRef
    Definition Classes
    Trees
  482. class TypeUnwrapper extends (reflect.internal.SymbolTable.Type) => reflect.internal.SymbolTable.Type
    Definition Classes
    Types
  483. abstract case class TypeVar extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types
  484. case class Typed extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.TypedApi with Product with Serializable
    Definition Classes
    Trees
  485. trait TypedApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  486. abstract class TypedExtractor extends AnyRef
    Definition Classes
    Trees
  487. class TypedLocator extends reflect.internal.SymbolTable.Locator
    Definition Classes
    Positions
  488. class TyperResult extends ControlThrowable
  489. class TyperRun extends Run

    The typer run

  490. case class UnApply extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.UnApplyApi with Product with Serializable
    Definition Classes
    Trees
  491. trait UnApplyApi extends reflect.api.Universe.TermTreeApi
    Definition Classes
    Trees
  492. abstract class UnApplyExtractor extends AnyRef
    Definition Classes
    Trees
  493. class UndoLog extends Clearable
    Definition Classes
    TypeConstraints
  494. final class UniqueConstantType extends reflect.internal.SymbolTable.FoldableConstantType
    Definition Classes
    Types
  495. final class UniqueErasedValueType extends reflect.internal.SymbolTable.ErasedValueType
    Definition Classes
    Types
  496. final class UniqueLiteralType extends reflect.internal.SymbolTable.LiteralType
    Definition Classes
    Types
  497. final class UniqueSingleType extends reflect.internal.SymbolTable.SingleType
    Definition Classes
    Types
  498. final class UniqueSuperType extends reflect.internal.SymbolTable.SuperType
    Definition Classes
    Types
  499. final class UniqueThisType extends reflect.internal.SymbolTable.ThisType
    Definition Classes
    Types
  500. abstract class UniqueType extends reflect.internal.SymbolTable.Type with Product
    Definition Classes
    Types
  501. final class UniqueTypeBounds extends reflect.internal.SymbolTable.TypeBounds
    Definition Classes
    Types
  502. trait Unliftable[T] extends AnyRef
    Definition Classes
    Liftables
  503. trait UntouchableTypeVar extends reflect.internal.SymbolTable.TypeVar
    Definition Classes
    Types
  504. case class ValDef extends reflect.internal.SymbolTable.ValOrDefDef with reflect.internal.SymbolTable.ValDefApi with Product with Serializable
    Definition Classes
    Trees
  505. trait ValDefApi extends reflect.api.Universe.ValOrDefDefApi
    Definition Classes
    Trees
  506. abstract class ValDefExtractor extends AnyRef
    Definition Classes
    Trees
  507. sealed abstract class ValOrDefDef extends reflect.internal.SymbolTable.MemberDef with reflect.internal.SymbolTable.ValOrDefDefApi
    Definition Classes
    Trees
  508. trait ValOrDefDefApi extends reflect.api.Universe.MemberDefApi
    Definition Classes
    Trees
  509. class ValidateException extends Exception
    Definition Classes
    Positions
  510. trait ValueClassDefinitions extends AnyRef
    Definition Classes
    Definitions
  511. class VarianceValidator extends reflect.internal.SymbolTable.InternalTraverser
    Definition Classes
    Variances
  512. abstract class VariancedTypeMap extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  513. trait WeakTypeTag[T] extends Equals with Serializable
    Definition Classes
    TypeTags
    Annotations
    @implicitNotFound()
  514. case class WorkEvent(atNode: Int, atMillis: Long) extends Product with Serializable
  515. class RichCompilationUnit extends Global.CompilationUnit
    Definition Classes
    RichCompilationUnits

Deprecated Type Members

  1. class TreePrinter extends Global.InternalTreePrinter
    Definition Classes
    Printers
    Annotations
    @nowarn() @deprecated
    Deprecated

    (Since version 2.13.4) use AstTreePrinter instead

  2. class LazyTreeCopier extends Global.LazyTreeCopier with Global.TreeCopier
    Definition Classes
    Trees
    Annotations
    @nowarn() @deprecated
    Deprecated

    (Since version 2.13.4) use LazyAstTreeCopier instead

  3. class StrictTreeCopier extends Global.StrictTreeCopier with Global.TreeCopier
    Definition Classes
    Trees
    Annotations
    @nowarn() @deprecated
    Deprecated

    (Since version 2.13.4) use StrictAstTreeCopier instead

  4. type Compat = MacroCompatApi
    Definition Classes
    Internals → Internals
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) compatibility with Scala 2.10 EOL

  5. trait CompatApi extends AnyRef
    Definition Classes
    Internals
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) compatibility with Scala 2.10 EOL

  6. class CompatToken extends AnyRef
    Definition Classes
    Internals
    Annotations
    @implicitNotFound() @deprecated
    Deprecated

    (Since version 2.13.0) compatibility with Scala 2.10 EOL

  7. trait CompilationUnitContextApi extends AnyRef
    Definition Classes
    Universe
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) c.enclosingTree-style APIs are now deprecated; consult the scaladoc for more information

  8. trait JavaArgumentApi extends AnyRef
    Definition Classes
    Annotations
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) use Annotation.tree to inspect annotation arguments

  9. trait MacroCompatApi extends reflect.macros.Universe.CompatApi
    Definition Classes
    Universe
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) compatibility with Scala 2.10 EOL

  10. type ModifiersCreator = ModifiersExtractor
    Definition Classes
    Trees
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) use ModifiersExtractor instead

  11. trait RunContextApi extends AnyRef
    Definition Classes
    Universe
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) c.enclosingTree-style APIs are now deprecated; consult the scaladoc for more information

Value Members

  1. object CompilationUnit
    Definition Classes
    CompilationUnits
  2. object NoCompilationUnit extends Global.CompilationUnit

    An object representing a missing compilation unit.

    An object representing a missing compilation unit.

    Definition Classes
    CompilationUnits
  3. object async extends AsyncPhase
    Definition Classes
    Global
  4. object cleanup extends CleanUp
    Definition Classes
    Global
  5. object constfold extends ConstantFolder

    Fold constants

    Fold constants

    Definition Classes
    Global
  6. object constructors extends Constructors
    Definition Classes
    Global
  7. object delambdafy extends Delambdafy
    Definition Classes
    Global
  8. object erasure extends Erasure
    Definition Classes
    Global → Transforms
  9. object explicitOuter extends ExplicitOuter
    Definition Classes
    Global
  10. object extensionMethods extends ExtensionMethods
    Definition Classes
    Global
  11. object fields extends Fields
    Definition Classes
    Global
  12. object flatten extends Flatten
    Definition Classes
    Global
  13. object gen extends ast.TreeGen

    Tree generation, usually based on existing symbols.

    Tree generation, usually based on existing symbols.

    Definition Classes
    Global → SymbolTable
  14. object genBCode extends GenBCode
    Definition Classes
    Global
  15. object icodes

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

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

    Definition Classes
    Global
  16. object lambdaLift extends LambdaLift
    Definition Classes
    Global
  17. object mixer extends Mixin
    Definition Classes
    Global
  18. object nodePrinters extends NodePrinters

    Print tree in detailed form

    Print tree in detailed form

    Definition Classes
    Global
  19. object overridingPairs extends OverridingPairs

    Computing pairs of overriding/overridden symbols

    Computing pairs of overriding/overridden symbols

    Definition Classes
    Global
  20. object patmat extends SubComponent with PatternMatching
    Definition Classes
    Global
  21. object pickler extends Pickler
    Definition Classes
    Global
  22. object postErasure extends SubComponent with PostErasure
    Definition Classes
    Global → Transforms
  23. object refChecks extends RefChecks
    Definition Classes
    Global
  24. object scalaPrimitives extends ScalaPrimitives

    Scala primitives, used the backend

    Scala primitives, used the backend

    Definition Classes
    Global
  25. object specializeTypes extends SpecializeTypes
    Definition Classes
    Global
  26. object statistics extends Statistics with GlobalStats

    Redefine statistics to include all known global + reflect stats.

    Redefine statistics to include all known global + reflect stats.

    Definition Classes
    Global → SymbolTable
  27. object superAccessors extends SuperAccessors
    Definition Classes
    Global
  28. object tailCalls extends TailCalls
    Definition Classes
    Global
  29. object terminal extends SubComponent
    Definition Classes
    Global
  30. object treeBrowsers extends TreeBrowsers

    Representing ASTs as graphs

    Representing ASTs as graphs

    Definition Classes
    Global
  31. object treeChecker extends TreeCheckers

    Tree checker

    Tree checker

    Definition Classes
    Global
  32. object typeDeconstruct extends StructuredTypeStrings
    Definition Classes
    Global
  33. object typer extends (analyzer)#Typer
    Definition Classes
    Global
  34. object uncurry extends UnCurry
    Definition Classes
    Global → Transforms
  35. object noopTransformer extends Global.AstTransformer
    Definition Classes
    Trees
  36. object treeInfo extends TreeInfo
    Definition Classes
    Trees
  37. val AllOps: SymbolOps
    Definition Classes
    Symbols
  38. implicit val AlternativeTag: ClassTag[Alternative]
    Definition Classes
    Trees
  39. implicit val AnnotatedTag: ClassTag[Annotated]
    Definition Classes
    Trees
  40. implicit val AnnotatedTypeTag: ClassTag[AnnotatedType]
    Definition Classes
    Types
  41. implicit val AnnotationTag: ClassTag[AnnotationInfo]
    Definition Classes
    AnnotationInfos
  42. implicit val AppliedTypeTreeTag: ClassTag[AppliedTypeTree]
    Definition Classes
    Trees
  43. def Apply(sym: Symbol, args: Tree*): Tree
    Definition Classes
    Trees → Trees
  44. def ApplyConstructor(tpt: Tree, args: List[Tree]): Apply
    Definition Classes
    Trees → Trees
  45. implicit val ApplyTag: ClassTag[Apply]
    Definition Classes
    Trees
  46. implicit val AssignTag: ClassTag[Assign]
    Definition Classes
    Trees
  47. def Bind(sym: Symbol, body: Tree): Bind
    Definition Classes
    Trees → Trees
  48. implicit val BindTag: ClassTag[Bind]
    Definition Classes
    Trees
  49. def Block(stats: Tree*): Block
    Definition Classes
    Trees → Trees
  50. implicit val BlockTag: ClassTag[Block]
    Definition Classes
    Trees
  51. final val BooleanTag: Int(2)
    Definition Classes
    Constants
  52. implicit val BoundedWildcardTypeTag: ClassTag[BoundedWildcardType]
    Definition Classes
    Types
  53. final val ByteTag: Int(3)
    Definition Classes
    Constants
  54. def CaseDef(pat: Tree, body: Tree): CaseDef
    Definition Classes
    Trees → Trees
  55. implicit val CaseDefTag: ClassTag[CaseDef]
    Definition Classes
    Trees
  56. final val CharTag: Int(5)
    Definition Classes
    Constants
  57. def ClassDef(sym: Symbol, constrMods: Modifiers, vparamss: List[List[ValDef]], body: List[Tree], superPos: Position): ClassDef

    Construct class definition with given class symbol, value parameters, supercall arguments and template body.

    Construct class definition with given class symbol, value parameters, supercall arguments and template body.

    sym

    the class symbol

    constrMods

    the modifiers for the class constructor, i.e. as in class C private (...)

    vparamss

    the value parameters -- if they have symbols they should be owned by sym

    body

    the template statements without primary constructor and value parameter fields.

    Definition Classes
    Trees
  58. implicit val ClassDefTag: ClassTag[ClassDef]
    Definition Classes
    Trees
  59. implicit val ClassInfoTypeTag: ClassTag[ClassInfoType]
    Definition Classes
    Types
  60. implicit val ClassSymbolTag: ClassTag[ClassSymbol]
    Definition Classes
    Symbols
  61. final val ClazzTag: Int(12)
    Definition Classes
    Constants
  62. implicit val CompoundTypeTag: ClassTag[CompoundType]
    Definition Classes
    Types
  63. implicit val CompoundTypeTreeTag: ClassTag[CompoundTypeTree]
    Definition Classes
    Trees
  64. implicit val ConstantTag: ClassTag[Constant]
    Definition Classes
    Constants
  65. implicit val ConstantTypeTag: ClassTag[ConstantType]
    Definition Classes
    Types
  66. val CyclicInheritance: java.lang.Throwable
    Definition Classes
    BaseTypeSeqs
  67. implicit val DefDefTag: ClassTag[DefDef]
    Definition Classes
    Trees
  68. implicit val DefTreeTag: ClassTag[DefTree]
    Definition Classes
    Trees
  69. final val DoubleTag: Int(9)
    Definition Classes
    Constants
  70. def EmptyPackageClass: ClassSymbol
    Definition Classes
    Global
  71. lazy val EmptyTreeTypeSubstituter: TreeTypeSubstituter
    Definition Classes
    Trees
  72. final val EnumTag: Int(13)
    Definition Classes
    Constants
  73. implicit val ExistentialTypeTag: ClassTag[ExistentialType]
    Definition Classes
    Types
  74. implicit val ExistentialTypeTreeTag: ClassTag[ExistentialTypeTree]
    Definition Classes
    Trees
  75. def FlagOps(mask: Long): SymbolOps
    Definition Classes
    Symbols
  76. implicit val FlagSetTag: ClassTag[FlagSet]
    Definition Classes
    FlagSets
  77. final val FloatTag: Int(8)
    Definition Classes
    Constants
  78. implicit val FreeTermSymbolTag: ClassTag[FreeTermSymbol]
    Definition Classes
    Symbols
  79. implicit val FreeTypeSymbolTag: ClassTag[FreeTypeSymbol]
    Definition Classes
    Symbols
  80. implicit val FunctionTag: ClassTag[Function]
    Definition Classes
    Trees
  81. implicit val GenericApplyTag: ClassTag[GenericApply]
    Definition Classes
    Trees
  82. val GlbFailure: java.lang.Throwable
    Definition Classes
    GlbLubs
  83. def Ident(sym: Symbol): Ident
    Definition Classes
    Trees → Trees
  84. def Ident(name: String): Ident
    Definition Classes
    Trees → Trees
  85. implicit val IdentTag: ClassTag[Ident]
    Definition Classes
    Trees
  86. implicit val IfTag: ClassTag[If]
    Definition Classes
    Trees
  87. implicit val ImplDefTag: ClassTag[ImplDef]
    Definition Classes
    Trees
  88. implicit val ImportSelectorTag: ClassTag[ImportSelector]
    Definition Classes
    Trees
  89. implicit val ImportTag: ClassTag[Import]
    Definition Classes
    Trees
  90. final val IntTag: Int(6)
    Definition Classes
    Constants
  91. implicit val JavaArgumentTag: ClassTag[ClassfileAnnotArg]
    Definition Classes
    AnnotationInfos
  92. final val JustParsed: Int(-1)

    The status value of a unit that has not yet been typechecked

    The status value of a unit that has not yet been typechecked

    Definition Classes
    RichCompilationUnits
  93. implicit val LabelDefTag: ClassTag[LabelDef]
    Definition Classes
    Trees
  94. implicit val LiteralTag: ClassTag[Literal]
    Definition Classes
    Trees
  95. final val LongTag: Int(7)
    Definition Classes
    Constants
  96. implicit val MatchTag: ClassTag[Match]
    Definition Classes
    Trees
  97. implicit val MemberDefTag: ClassTag[MemberDef]
    Definition Classes
    Trees
  98. implicit val MemberScopeTag: ClassTag[MemberScope]
    Definition Classes
    Scopes
  99. implicit val MethodSymbolTag: ClassTag[MethodSymbol]
    Definition Classes
    Symbols
  100. implicit val MethodTypeTag: ClassTag[MethodType]
    Definition Classes
    Types
  101. implicit val MirrorTag: ClassTag[Mirror]
    Definition Classes
    Global → ImplicitTags
  102. def Modifiers(flags: FlagSet): Modifiers
    Definition Classes
    Trees
  103. def Modifiers(flags: FlagSet, privateWithin: Name): Modifiers
    Definition Classes
    Trees
  104. implicit val ModifiersTag: ClassTag[Modifiers]
    Definition Classes
    Trees
  105. implicit val ModuleDefTag: ClassTag[ModuleDef]
    Definition Classes
    Trees
  106. implicit val ModuleSymbolTag: ClassTag[ModuleSymbol]
    Definition Classes
    Symbols
  107. implicit val NameTag: ClassTag[Name]
    Definition Classes
    Names
  108. implicit val NameTreeTag: ClassTag[NameTree]
    Definition Classes
    Trees
  109. implicit val NamedArgTag: ClassTag[NamedArg]
    Definition Classes
    Trees
  110. def New(sym: Symbol, args: Tree*): Tree
    Definition Classes
    Trees → Trees
  111. def New(tpe: Type, argss: List[List[Tree]]): Tree
    Definition Classes
    Trees
  112. def New(tpe: Type, args: Tree*): Tree
    Definition Classes
    Trees → Trees
  113. def New(tpt: Tree, argss: List[List[Tree]]): Tree
    Definition Classes
    Trees → Trees
  114. def NewFromConstructor(constructor: Symbol, args: Tree*): Apply
    Definition Classes
    Trees
  115. implicit val NewTag: ClassTag[New]
    Definition Classes
    Trees
  116. lazy val NoContext: (analyzer)#NoContext.type
    Definition Classes
    ContextTrees
  117. val NoFlags: FlagSet
    Definition Classes
    FlagSets → FlagSets
  118. val NoKindErrors: KindErrors
    Definition Classes
    Kinds
  119. lazy val NoMods: Modifiers
    Definition Classes
    Trees
  120. final val NoPeriod: Int(0)
    Definition Classes
    SymbolTable
  121. val NoPosition: reflect.internal.util.NoPosition.type
    Definition Classes
    Positions → Positions
  122. final val NoRunId: Int(0)
    Definition Classes
    SymbolTable
  123. lazy val NoSymbol: NoSymbol
    Definition Classes
    Symbols → Symbols
  124. final val NoTag: Int(0)
    Definition Classes
    Constants
  125. final val NotLoaded: Int(-2)

    The status value of a unit that has not yet been loaded

    The status value of a unit that has not yet been loaded

    Definition Classes
    RichCompilationUnits
  126. final val NullTag: Int(11)
    Definition Classes
    Constants
  127. implicit val NullaryMethodTypeTag: ClassTag[NullaryMethodType]
    Definition Classes
    Types
  128. implicit val PackageDefTag: ClassTag[PackageDef]
    Definition Classes
    Trees
  129. final val PartiallyChecked: Int(0)

    The status value of a unit that has been partially typechecked

    The status value of a unit that has been partially typechecked

    Definition Classes
    RichCompilationUnits
  130. implicit val PolyTypeTag: ClassTag[PolyType]
    Definition Classes
    Types
  131. implicit val PositionTag: ClassTag[Position]
    Definition Classes
    Positions
  132. def PrimarySuperCall(argss: List[List[Tree]]): Tree

    Factory method for a primary constructor super call super.<init>(args_1)...(args_n)

    Factory method for a primary constructor super call super.<init>(args_1)...(args_n)

    Definition Classes
    Trees
  133. implicit val RefTreeTag: ClassTag[RefTree]
    Definition Classes
    Trees
  134. implicit val ReferenceToBoxedTag: ClassTag[ReferenceToBoxed]
    Definition Classes
    Trees
  135. implicit val RefinedTypeTag: ClassTag[RefinedType]
    Definition Classes
    Types
  136. implicit val ReturnTag: ClassTag[Return]
    Definition Classes
    Trees
  137. def RootClass: ClassSymbol
    Definition Classes
    Global
  138. implicit val RuntimeClassTag: ClassTag[RuntimeClass]
    Definition Classes
    Global → ImplicitTags
  139. implicit val ScopeTag: ClassTag[Scope]
    Definition Classes
    Scopes
  140. def Select(qualifier: Tree, sym: Symbol): Select
    Definition Classes
    Trees → Trees
  141. def Select(qualifier: Tree, name: String): Select
    Definition Classes
    Trees → Trees
  142. implicit val SelectFromTypeTreeTag: ClassTag[SelectFromTypeTree]
    Definition Classes
    Trees
  143. implicit val SelectTag: ClassTag[Select]
    Definition Classes
    Trees
  144. final val ShortTag: Int(4)
    Definition Classes
    Constants
  145. implicit val SingleTypeTag: ClassTag[SingleType]
    Definition Classes
    Types
  146. implicit val SingletonTypeTag: ClassTag[SingletonType]
    Definition Classes
    Types
  147. implicit val SingletonTypeTreeTag: ClassTag[SingletonTypeTree]
    Definition Classes
    Trees
  148. implicit val StarTag: ClassTag[Star]
    Definition Classes
    Trees
  149. final val StringTag: Int(10)
    Definition Classes
    Constants
  150. def Super(sym: Symbol, mix: TypeName): Tree
    Definition Classes
    Trees → Trees
  151. def SuperSelect(clazz: Symbol, sym: Symbol): Tree
    Definition Classes
    Trees
  152. implicit val SuperTag: ClassTag[Super]
    Definition Classes
    Trees
  153. implicit val SuperTypeTag: ClassTag[SuperType]
    Definition Classes
    Types
  154. implicit val SymTreeTag: ClassTag[SymTree]
    Definition Classes
    Trees
  155. implicit val SymbolTag: ClassTag[Symbol]
    Definition Classes
    Symbols
  156. def Template(sym: Symbol, body: List[Tree]): Template
    Definition Classes
    Trees
  157. implicit val TemplateTag: ClassTag[Template]
    Definition Classes
    Trees
  158. implicit val TermNameTag: ClassTag[TermName]
    Definition Classes
    Names
  159. implicit val TermSymbolTag: ClassTag[TermSymbol]
    Definition Classes
    Symbols
  160. implicit val TermTreeTag: ClassTag[TermTree]
    Definition Classes
    Trees
  161. def This(sym: Symbol): Tree
    Definition Classes
    Trees → Trees
  162. implicit val ThisTag: ClassTag[This]
    Definition Classes
    Trees
  163. implicit val ThisTypeTag: ClassTag[ThisType]
    Definition Classes
    Types
  164. def Throw(tpe: Type, args: Tree*): Throw
    Definition Classes
    Trees → Trees
  165. implicit val ThrowTag: ClassTag[Throw]
    Definition Classes
    Trees
  166. implicit val TreeCopierTag: ClassTag[TreeCopier]
    Definition Classes
    Trees
  167. implicit val TreeTag: ClassTag[Tree]
    Definition Classes
    Trees
  168. def Try(body: Tree, cases: (Tree, Tree)*): Try
    Definition Classes
    Trees → Trees
  169. implicit val TryTag: ClassTag[Try]
    Definition Classes
    Trees
  170. implicit val TypTreeTag: ClassTag[TypTree]
    Definition Classes
    Trees
  171. implicit val TypeApplyTag: ClassTag[TypeApply]
    Definition Classes
    Trees
  172. implicit val TypeBoundsTag: ClassTag[TypeBounds]
    Definition Classes
    Types
  173. def TypeBoundsTree(sym: Symbol): TypeBoundsTree
    Definition Classes
    Trees
  174. def TypeBoundsTree(bounds: TypeBounds): TypeBoundsTree
    Definition Classes
    Trees
  175. implicit val TypeBoundsTreeTag: ClassTag[TypeBoundsTree]
    Definition Classes
    Trees
  176. implicit val TypeDefTag: ClassTag[TypeDef]
    Definition Classes
    Trees
  177. implicit val TypeNameTag: ClassTag[TypeName]
    Definition Classes
    Names
  178. implicit val TypeRefTag: ClassTag[TypeRef]
    Definition Classes
    Types
  179. implicit val TypeSymbolTag: ClassTag[TypeSymbol]
    Definition Classes
    Symbols
  180. implicit val TypeTagg: ClassTag[Type]
    Definition Classes
    Types
  181. def TypeTree(tp: Type): TypeTree
    Definition Classes
    Trees → Trees
  182. implicit val TypeTreeTag: ClassTag[TypeTree]
    Definition Classes
    Trees
  183. implicit val TypedTag: ClassTag[Typed]
    Definition Classes
    Trees
  184. implicit val UnApplyTag: ClassTag[UnApply]
    Definition Classes
    Trees
  185. final val UnitTag: Int(1)
    Definition Classes
    Constants
  186. implicit val ValDefTag: ClassTag[ValDef]
    Definition Classes
    Trees
  187. implicit val ValOrDefDefTag: ClassTag[ValOrDefDef]
    Definition Classes
    Trees
  188. def abort(msg: String): Nothing
    Definition Classes
    Reporting
  189. implicit def abstractFile: Pickler[AbstractFile]
    Definition Classes
    Picklers
  190. implicit def action: Pickler[() => Unit]
    Definition Classes
    Picklers
  191. def adaptAnnotations(tree: Tree, mode: reflect.internal.Mode, pt: Type): Tree
    Definition Classes
    AnnotationCheckers
  192. def adaptBoundsToAnnotations(bounds: List[TypeBounds], tparams: List[Symbol], targs: List[Type]): List[TypeBounds]
    Definition Classes
    AnnotationCheckers
  193. def adaptTypeOfReturn(tree: Tree, pt: Type, default: => Type): Type
    Definition Classes
    AnnotationCheckers
  194. def addAnnotationChecker(checker: AnnotationChecker): Unit
    Definition Classes
    AnnotationCheckers
  195. def addAnnotations(tree: Tree, tpe: Type): Type
    Definition Classes
    AnnotationCheckers
  196. def addContext(contexts: Contexts, context: Context, cpos: Position): Unit

    Insert a context with non-transparent position cpos at correct position into a buffer of context trees.

    Insert a context with non-transparent position cpos at correct position into a buffer of context trees.

    Definition Classes
    ContextTrees
  197. def addContext(contexts: Contexts, context: Context): Unit

    Insert a context at correct position into a buffer of context trees.

    Insert a context at correct position into a buffer of context trees. If the context has a transparent position, add it multiple times at the positions of all its solid descendant trees.

    Definition Classes
    ContextTrees
  198. implicit def addFlagOps(left: FlagSet): FlagOps
    Definition Classes
    FlagSets → FlagSets
  199. def addMember(thistp: Type, tp: Type, sym: Symbol, depth: Depth): Unit
    Definition Classes
    Types
  200. def addMember(thistp: Type, tp: Type, sym: Symbol): Unit
    Definition Classes
    Types
  201. implicit def addOnTypeError[T](x: => T): OnTypeError[T]
  202. def addSerializable(ps: Type*): List[Type]
    Definition Classes
    Types
  203. def afterEachPhase[T](op: => T): List[(Phase, T)]

    Returns List of (phase, value) pairs, including only those where the value compares unequal to the previous phase's value.

    Returns List of (phase, value) pairs, including only those where the value compares unequal to the previous phase's value.

    Definition Classes
    Global
  204. final def allNames(): Iterator[TermName]
    Definition Classes
    Names
  205. lazy val analyzer: InteractiveAnalyzer { val global: Global.this.type }
    Definition Classes
    GlobalGlobal
  206. def annotatedType(annots: List[AnnotationInfo], underlying: Type): Type
    Definition Classes
    Types
  207. def annotationsConform(tp1: Type, tp2: Type): Boolean
    Definition Classes
    AnnotationCheckers
  208. def annotationsGlb(tpe: Type, ts: List[Type]): Type
    Definition Classes
    AnnotationCheckers
  209. def annotationsLub(tpe: Type, ts: List[Type]): Type
    Definition Classes
    AnnotationCheckers
  210. def appliedType(tyconSym: Symbol, args: Type*): Type
    Definition Classes
    Types → Types
  211. def appliedType(tyconSym: Symbol, args: List[Type]): Type
    Definition Classes
    Types → Types
  212. def appliedType(tycon: Type, args: Type*): Type
    Definition Classes
    Types → Types
  213. def appliedType(tycon: Type, args: List[Type]): Type
    Definition Classes
    Types → Types
  214. def arrayToRepeated(tp: Type): Type
    Definition Classes
    SymbolTable
  215. def asCompactDebugString(t: Tree): String
    Definition Classes
    Printers
  216. def asCompactString(t: Tree): String
    Definition Classes
    Printers
  217. def asString(t: Tree): String
    Definition Classes
    Printers
  218. def ask[A](op: () => A): A

    Asks for a computation to be done quickly on the presentation compiler thread

    Asks for a computation to be done quickly on the presentation compiler thread

    Definition Classes
    CompilerControl
  219. def askDocComment(sym: Symbol, source: SourceFile, site: Symbol, fragments: List[(Symbol, SourceFile)], response: Response[(String, String, Position)]): Unit

    Sets sync var response to doc comment information for a given symbol.

    Sets sync var response to doc comment information for a given symbol.

    sym

    The symbol whose doc comment should be retrieved (might come from a classfile)

    source

    The source file that's supposed to contain the definition

    site

    The symbol where 'sym' is observed

    fragments

    All symbols that can contribute to the generated documentation together with their source files.

    response

    A response that will be set to the following: If source contains a definition of a given symbol that has a doc comment, the (expanded, raw, position) triplet for a comment, otherwise ("", "", NoPosition). Note: This operation does not automatically load sources that are not yet loaded.

    Definition Classes
    CompilerControl
  220. implicit def askDocCommentItem: CondPickler[AskDocCommentItem]
    Definition Classes
    Picklers
  221. def askFilesDeleted(sources: List[SourceFile], response: Response[Unit]): Unit

    Removes source files and toplevel symbols, and issues a new typer run.

    Removes source files and toplevel symbols, and issues a new typer run. Returns () to syncvar response on completion.

    Definition Classes
    CompilerControl
  222. def askForResponse[A](op: () => A): Response[A]

    Asks for a computation to be done on presentation compiler thread, returning a response with the result or an exception

    Asks for a computation to be done on presentation compiler thread, returning a response with the result or an exception

    Definition Classes
    CompilerControl
  223. def askLinkPos(sym: Symbol, source: SourceFile, response: Response[Position]): Unit

    Sets sync var response to the position of the definition of the given link in the given sourcefile.

    Sets sync var response to the position of the definition of the given link in the given sourcefile.

    sym

    The symbol referenced by the link (might come from a classfile)

    source

    The source file that's supposed to contain the definition

    response

    A response that will be set to the following: If source contains a definition that is referenced by the given link the position of that definition, otherwise NoPosition. Note: This operation does not automatically load source. If source is unloaded, it stays that way.

    Definition Classes
    CompilerControl
  224. implicit def askLinkPosItem: CondPickler[AskLinkPosItem]
    Definition Classes
    Picklers
  225. final def askLoadedTyped(source: SourceFile, response: Response[Tree]): Unit
    Definition Classes
    CompilerControl
  226. def askLoadedTyped(source: SourceFile, keepLoaded: Boolean, response: Response[Tree]): Unit

    If source is not yet loaded, loads it, and starts a new run, otherwise continues with current pass.

    If source is not yet loaded, loads it, and starts a new run, otherwise continues with current pass. Waits until source is fully type checked and returns body in response.

    source

    The source file that needs to be fully typed.

    keepLoaded

    Whether to keep that file in the PC if it was not loaded before. If the file is already loaded, this flag is ignored.

    response

    The response, which is set to the fully attributed tree of source. If the unit corresponding to source has been removed in the meantime the a NoSuchUnitError is raised in the response.

    Definition Classes
    CompilerControl
  227. implicit def askLoadedTypedItem: CondPickler[AskLoadedTypedItem]
    Definition Classes
    Picklers
  228. def askParsedEntered(source: SourceFile, keepLoaded: Boolean, response: Response[Tree]): Unit

    Set sync var response to the parse tree of source with all top-level symbols entered.

    Set sync var response to the parse tree of source with all top-level symbols entered.

    source

    The source file to be analyzed

    keepLoaded

    If set to true, source file will be kept as a loaded unit afterwards. If keepLoaded is false the operation is run at low priority, only after everything is brought up to date in a regular type checker run.

    response

    The response.

    Definition Classes
    CompilerControl
  229. implicit def askParsedEnteredItem: CondPickler[AskParsedEnteredItem]
    Definition Classes
    Picklers
  230. def askReload(sources: List[SourceFile], response: Response[Unit]): Unit

    Makes sure a set of compilation units is loaded and parsed.

    Makes sure a set of compilation units is loaded and parsed. Returns () to syncvar response on completion. Afterwards a new background compiler run is started with the given sources at the head of the list of to-be-compiled sources.

    Definition Classes
    CompilerControl
  231. def askReset(): Unit

    Cancels current compiler run and start a fresh one where everything will be re-typechecked (but not re-loaded).

    Cancels current compiler run and start a fresh one where everything will be re-typechecked (but not re-loaded).

    Definition Classes
    CompilerControl
  232. def askScopeCompletion(pos: Position, response: Response[List[Member]]): Unit

    Sets sync var response to list of members that are visible as members of the scope enclosing pos.

    Sets sync var response to list of members that are visible as members of the scope enclosing pos.

    Definition Classes
    CompilerControl
    Note

    Pre-condition: source is loaded

  233. implicit def askScopeCompletionItem: CondPickler[AskScopeCompletionItem]
    Definition Classes
    Picklers
  234. def askShutdown(): Unit

    Tells the compile server to shutdown, and not to restart again

    Tells the compile server to shutdown, and not to restart again

    Definition Classes
    CompilerControl
  235. def askStructure(keepSrcLoaded: Boolean)(source: SourceFile, response: Response[Tree]): Unit

    If source if not yet loaded, get an outline view with askParseEntered.

    If source if not yet loaded, get an outline view with askParseEntered. If source is loaded, wait for it to be typechecked. In both cases, set response to parsed (and possibly typechecked) tree.

    keepSrcLoaded

    If set to true, source file will be kept as a loaded unit afterwards.

    Definition Classes
    CompilerControl
  236. def askToDoFirst(source: SourceFile): Unit

    Asks to do unit corresponding to given source file on present and subsequent type checking passes.

    Asks to do unit corresponding to given source file on present and subsequent type checking passes. If the file is in the 'crashedFiles' ignore list it is removed and typechecked normally.

    Definition Classes
    CompilerControl
  237. implicit def askToDoFirstItem: CondPickler[AskToDoFirstItem]
    Definition Classes
    Picklers
  238. def askTypeAt(pos: Position, response: Response[Tree]): Unit

    Sets sync var response to the smallest fully attributed tree that encloses position pos.

    Sets sync var response to the smallest fully attributed tree that encloses position pos. Note: Unlike for most other ask... operations, the source file belonging to pos needs not be loaded.

    Definition Classes
    CompilerControl
  239. implicit def askTypeAtItem: CondPickler[AskTypeAtItem]
    Definition Classes
    Picklers
  240. def askTypeCompletion(pos: Position, response: Response[List[Member]]): Unit

    Sets sync var response to list of members that are visible as members of the tree enclosing pos, possibly reachable by an implicit.

    Sets sync var response to list of members that are visible as members of the tree enclosing pos, possibly reachable by an implicit.

    Definition Classes
    CompilerControl
    Note

    Pre-condition: source is loaded

  241. implicit def askTypeCompletionItem: CondPickler[AskTypeCompletionItem]
    Definition Classes
    Picklers
  242. implicit def askTypeItem: CondPickler[AskTypeItem]
    Definition Classes
    Picklers
  243. final def assert(assertion: Boolean, message: => Any): Unit
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  244. def assertCorrectThread(): Unit

    Check that the currently executing thread is the presentation compiler thread.

    Check that the currently executing thread is the presentation compiler thread.

    Compiler initialization may happen on a different thread (signalled by globalPhase being NoPhase)

    Definition Classes
    Global → SymbolTable
    Annotations
    @elidable()
  245. final def atPhaseStack: List[reflect.internal.Phase]
    Definition Classes
    SymbolTable
  246. def atPhaseStackMessage: String
    Definition Classes
    SymbolTable
  247. def atPos[T <: Tree](pos: Position)(tree: T): T
    Definition Classes
    Positions → Positions
  248. def backquotedPath(t: Tree): String
    Definition Classes
    Printers
  249. def baseTypeSingletonSeq(tp: Type): BaseTypeSeq
    Definition Classes
    BaseTypeSeqs
  250. def basetypeRecursions: Int
    Definition Classes
    Types
  251. def basetypeRecursions_=(value: Int): Unit
    Definition Classes
    Types
  252. final def bitSetByPredicate[A](xs: List[A])(pred: (A) => Boolean): BitSet
    Definition Classes
    Collections
  253. def brutallyResetAttrs(x: Tree, leaveAlone: (Tree) => Boolean = null): Tree

    Definition Classes
    Trees
    See also

    ResetAttrs

  254. val build: ReificationSupportImpl
    Definition Classes
    ReificationSupport
  255. def canAdaptAnnotations(tree: Tree, mode: reflect.internal.Mode, pt: Type): Boolean
    Definition Classes
    AnnotationCheckers
  256. def captureVariable(vble: Symbol): Unit
    Definition Classes
    CapturedVariables
  257. def capturedVariableType(vble: Symbol, tpe: Type, erasedTypes: Boolean): Type
    Definition Classes
    CapturedVariables
  258. def capturedVariableType(vble: Symbol): Type
    Definition Classes
    CapturedVariables
  259. def changeNonLocalOwners(tree: Tree, newowner: Symbol): Unit
    Definition Classes
    Trees
  260. def checkKindBounds0(tparams: List[Symbol], targs: List[Type], pre: Type, owner: Symbol, explainErrors: Boolean): List[(Type, Symbol, KindErrors)]
    Definition Classes
    Kinds
  261. def checkNoResponsesOutstanding(): Unit
  262. def classPath: ClassPath
    Definition Classes
    Global
  263. def clearDocComments(): Unit
    Definition Classes
    DocComments
  264. def clearIgnoredFiles(): Unit

    Flush the buffer of sources that are ignored during background compilation.

  265. def cloneSymbols(syms: List[Symbol]): List[Symbol]
    Definition Classes
    Symbols
  266. def cloneSymbolsAndModify(syms: List[Symbol], infoFn: (Type) => Type): List[Symbol]
    Definition Classes
    Symbols
  267. def cloneSymbolsAtOwner(syms: List[Symbol], owner: Symbol): List[Symbol]
    Definition Classes
    Symbols
  268. def cloneSymbolsAtOwnerAndModify(syms: List[Symbol], owner: Symbol, infoFn: (Type) => Type): List[Symbol]
    Definition Classes
    Symbols
  269. def close(): Unit
    Definition Classes
    Global → Closeable → AutoCloseable
  270. final lazy val closeableRegistry: CloseableRegistry
    Definition Classes
    Global
  271. final def closestEnclMethod(from: Symbol): Symbol
    Definition Classes
    Symbols
    Annotations
    @tailrec()
  272. final def collectFirst[A, B](as: List[A])(pf: PartialFunction[A, B]): Option[B]
    Definition Classes
    Collections
  273. final def collectMap2[A, B, C](xs1: List[A], xs2: List[B])(p: (A, B) => Boolean): Map[A, B]
    Definition Classes
    Collections
  274. final def compareLengths(xs1: List[_], xs2: List[_]): Int
    Definition Classes
    Collections
    Annotations
    @tailrec()
  275. final def completionsAt(pos: Position): CompletionResult
  276. def compoundBaseTypeSeq(tp: Type): BaseTypeSeq
    Definition Classes
    BaseTypeSeqs
  277. def computePhaseAssembly(): List[SubComponent]

    Called by Global#computePhaseDescriptors to compute phase order.

    Called by Global#computePhaseDescriptors to compute phase order.

    Definition Classes
    PhaseAssembly
  278. def connectModuleToClass(m: ModuleSymbol, moduleClass: ClassSymbol): m.type
    Definition Classes
    Symbols
  279. def containsExistential(tpe: Type): Boolean
    Definition Classes
    Types
  280. def cookedDocComment(sym: Symbol, docStr: String = ""): String

    The raw doc comment of symbol sym, minus usecase and define sections, augmented by missing sections of an inherited doc comment.

    The raw doc comment of symbol sym, minus usecase and define sections, augmented by missing sections of an inherited doc comment. If a symbol does not have a doc comment but some overridden version of it does, the doc comment of the overridden version is copied instead.

    Definition Classes
    DocComments
  281. val cookedDocComments: HashMap[Symbol, String]
    Definition Classes
    DocComments
  282. def copyClassDef(tree: Tree)(mods: Modifiers, name: Name, tparams: List[TypeDef], impl: Template): ClassDef
    Definition Classes
    Trees
  283. def copyDefDef(tree: Tree)(mods: Modifiers, name: Name, tparams: List[TypeDef], vparamss: List[List[ValDef]], tpt: Tree, rhs: Tree): DefDef
    Definition Classes
    Trees
  284. def copyMethodType(tp: Type, params: List[Symbol], restpe: Type): Type
    Definition Classes
    Types
  285. def copyModuleDef(tree: Tree)(mods: Modifiers, name: Name, impl: Template): ModuleDef
    Definition Classes
    Trees
  286. def copyRefinedType(original: RefinedType, parents: List[Type], decls: Scope): Type
    Definition Classes
    Types
  287. def copyTypeDef(tree: Tree)(mods: Modifiers, name: Name, tparams: List[TypeDef], rhs: Tree): TypeDef
    Definition Classes
    Trees
  288. def copyTypeRef(tp: Type, pre: Type, sym: Symbol, args: List[Type]): Type
    Definition Classes
    Types
  289. def copyValDef(tree: Tree)(mods: Modifiers, name: Name, tpt: Tree, rhs: Tree): ValDef
    Definition Classes
    Trees
  290. final def corresponds3[A, B, C](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) => Boolean): Boolean
    Definition Classes
    Collections
    Annotations
    @tailrec()
  291. def createFromClonedSymbols[T](syms: List[Symbol], tpe: Type)(creator: (List[Symbol], Type) => T): T
    Definition Classes
    Symbols
  292. def createFromClonedSymbolsAtOwner[T](syms: List[Symbol], owner: Symbol, tpe: Type)(creator: (List[Symbol], Type) => T): T
    Definition Classes
    Symbols
  293. def createJavadoc: Boolean
    Definition Classes
    Global
  294. def currentFreshNameCreator: FreshNameCreator
    Definition Classes
    Global → FreshNames
  295. final def currentPeriod: Period
    Definition Classes
    SymbolTable
  296. def currentRun: Run

    The currently active run

    The currently active run

    Definition Classes
    GlobalParsing → Reporting
  297. def currentRunId: Int

    The id of the currently active run

    The id of the currently active run

    Definition Classes
    Global → SymbolTable
  298. var currentSettings: Settings
    Definition Classes
    Global
  299. def currentSource: SourceFile
    Definition Classes
    Global
  300. def currentUnit: CompilationUnit
    Definition Classes
    Global
  301. val debugIDE: Boolean
  302. final def debugLog(msg: => String): Unit

    Print msg only when debugIDE is true.

    Print msg only when debugIDE is true.

    Annotations
    @inline()
  303. def debugStack(t: Throwable): Unit
    Definition Classes
    SymbolTable
  304. def debugString(tp: Type): String
    Definition Classes
    TypeDebugging
  305. final def debuglog(msg: => String): Unit
    Definition Classes
    Global → SymbolTable
    Annotations
    @inline()
  306. def decodedSymName(tree: Tree, name: Name): String
    Definition Classes
    Printers
  307. def defaultThrowable[T <: Throwable]: CondPickler[T]
    Definition Classes
    Picklers
  308. def defineOriginalOwner(sym: Symbol, owner: Symbol): Unit
    Definition Classes
    Global → Symbols
  309. val deletedTopLevelSyms: LinkedHashSet[Symbol]

    The top level classes and objects no longer seen in the presentation compiler

  310. def delta(f: AbstractFile, cs: Array[Char]): Diff
    Definition Classes
    Picklers
  311. def demandNewCompilerRun(): Unit
  312. def deriveCaseDef(cdef: Tree)(applyToBody: (Tree) => Tree): CaseDef
    Definition Classes
    Trees
  313. def deriveClassDef(cdef: Tree)(applyToImpl: (Template) => Template): ClassDef
    Definition Classes
    Trees
  314. def deriveDefDef(ddef: Tree)(applyToRhs: (Tree) => Tree): DefDef
    Definition Classes
    Trees
  315. def deriveFreshSkolems(tparams: List[Symbol]): List[Symbol]
    Definition Classes
    ExistentialsAndSkolems
  316. def deriveFunction(func: Tree)(applyToRhs: (Tree) => Tree): Function
    Definition Classes
    Trees
  317. def deriveLabelDef(ldef: Tree)(applyToRhs: (Tree) => Tree): LabelDef
    Definition Classes
    Trees
  318. def deriveModuleDef(mdef: Tree)(applyToImpl: (Template) => Template): ModuleDef
    Definition Classes
    Trees
  319. def deriveSymbols(syms: List[Symbol], symFn: (Symbol) => Symbol): List[Symbol]
    Definition Classes
    Symbols
  320. def deriveSymbols2[A](syms: List[Symbol], as: List[A], symFn: (Symbol, A) => Symbol): List[Symbol]
    Definition Classes
    Symbols
  321. def deriveTemplate(templ: Tree)(applyToBody: (List[Tree]) => List[Tree]): Template
    Definition Classes
    Trees
  322. def deriveType(syms: List[Symbol], symFn: (Symbol) => Symbol)(tpe: Type): Type
    Definition Classes
    Symbols
  323. def deriveType2[A](syms: List[Symbol], as: List[A], symFn: (Symbol, A) => Symbol)(tpe: Type): Type
    Definition Classes
    Symbols
  324. def deriveTypeWithWildcards(syms: List[Symbol])(tpe: Type): Type
    Definition Classes
    Symbols
  325. def deriveValDef(vdef: Tree)(applyToRhs: (Tree) => Tree): ValDef
    Definition Classes
    Trees
  326. final def devWarning(pos: Position, msg: => String): Unit
    Definition Classes
    Global
    Annotations
    @inline()
  327. final def devWarning(msg: => String): Unit

    This is for WARNINGS which should reach the ears of scala developers whenever they occur, but are not useful for normal users.

    This is for WARNINGS which should reach the ears of scala developers whenever they occur, but are not useful for normal users. They should be precise, explanatory, and infrequent. Please don't use this as a logging mechanism. !!! is prefixed to all messages issued via this route to make them visually distinct.

    Definition Classes
    Global → SymbolTable
    Annotations
    @inline()
  328. final def devWarningDumpStack(msg: => String, maxFrames: Int): Unit
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  329. final def devWarningIf(cond: => Boolean)(msg: => String): Unit
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  330. final def distinctBy[A, B](xs: List[A])(f: (A) => B): List[A]
    Definition Classes
    Collections
  331. def doLocateContext(pos: Position): Context

    Returns the smallest context that contains given pos, throws FatalError if none exists.

    Returns the smallest context that contains given pos, throws FatalError if none exists.

    Definition Classes
    CompilerControl
  332. def docCommentPos(sym: Symbol): Position

    The position of the raw doc comment of symbol sym, or NoPosition if missing If a symbol does not have a doc comment but some overridden version of it does, the position of the doc comment of the overridden version is returned instead.

    The position of the raw doc comment of symbol sym, or NoPosition if missing If a symbol does not have a doc comment but some overridden version of it does, the position of the doc comment of the overridden version is returned instead.

    Definition Classes
    DocComments
  333. val docComments: WeakHashMap[Symbol, DocComment]

    The raw doc comment map

    The raw doc comment map

    In IDE, background compilation runs get interrupted by reloading new sourcefiles. This is weak to avoid memleaks due to the doc of their cached symbols (e.g. in baseTypeSeq) between periodic doc reloads.

    Definition Classes
    DocComments
  334. def duplicateAndKeepPositions(tree: Tree): Tree
    Definition Classes
    Trees
  335. def echoPhaseSummary(ph: Phase): Unit
    Definition Classes
    Global
  336. def elementExtract(container: Symbol, tp: Type): Type
    Definition Classes
    Types
  337. def elementExtractOption(container: Symbol, tp: Type): Option[Type]
    Definition Classes
    Types
  338. def elementTest(container: Symbol, tp: Type)(f: (Type) => Boolean): Boolean
    Definition Classes
    Types
  339. def elementTransform(container: Symbol, tp: Type)(f: (Type) => Type): Type
    Definition Classes
    Types
  340. def elimAnonymousClass(t: Type): Type
    Definition Classes
    Types
  341. implicit def emptyAction: CondPickler[EmptyAction]
    Definition Classes
    Picklers
  342. def enableIgnoredFile(file: AbstractFile): Unit

    Remove a crashed file from the ignore buffer.

    Remove a crashed file from the ignore buffer. Background compilation will take it into account and errors will be reported against it.

  343. def encode(str: String): TermName
    Definition Classes
    StdNames
  344. def ensureNonOverlapping(tree: Tree, others: List[Tree], focus: Boolean): Unit
    Definition Classes
    Positions
  345. def ensureNonOverlapping(tree: Tree, others: List[Tree]): Unit
    Definition Classes
    Positions
  346. final def enteringDelambdafy[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  347. final def enteringErasure[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  348. final def enteringExplicitOuter[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  349. final def enteringFlatten[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  350. final def enteringJVM[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  351. final def enteringMixin[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  352. final def enteringPhase[T](ph: reflect.internal.Phase)(op: => T): T
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  353. final def enteringPhaseNotLaterThan[T](target: reflect.internal.Phase)(op: => T): T
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  354. final def enteringPhaseWithName[T](phaseName: String)(body: => T): T
    Definition Classes
    SymbolTable
  355. final def enteringPickler[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  356. final def enteringPrevPhase[T](op: => T): T
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  357. final def enteringSpecialize[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  358. final def enteringTyper[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  359. final def enteringUncurry[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  360. def erasurePhase: Phase
    Definition Classes
    Global → SymbolTable
  361. def existentialAbstraction(tparams: List[Symbol], tpe0: Type, flipVariance: Boolean): Type
    Definition Classes
    Types
  362. final def existentialTransform[T](rawSyms: List[Symbol], tp: Type, rawOwner: Symbol)(creator: (List[Symbol], Type) => T): T
    Definition Classes
    ExistentialsAndSkolems
  363. def existentialsInType(tpe: Type): List[Symbol]
    Definition Classes
    Types
  364. def existingSymbols(syms: List[Symbol]): List[Symbol]
    Definition Classes
    Symbols
  365. final def exists2[A, B](xs1: List[A], xs2: List[B])(f: (A, B) => Boolean): Boolean
    Definition Classes
    Collections
  366. final def exists3[A, B, C](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) => Boolean): Boolean
    Definition Classes
    Collections
  367. final def exitingDelambdafy[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  368. final def exitingErasure[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  369. final def exitingExplicitOuter[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  370. final def exitingFlatten[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  371. final def exitingMixin[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  372. final def exitingPhase[T](ph: reflect.internal.Phase)(op: => T): T
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  373. final def exitingPickler[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  374. final def exitingPostErasure[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  375. final def exitingRefchecks[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  376. final def exitingSpecialize[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  377. final def exitingTyper[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  378. final def exitingUncurry[T](op: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  379. def expandInheritdoc(parent: String, child: String, sym: Symbol): String

    Expand inheritdoc tags

    Expand inheritdoc tags

    • for the main comment we transform the inheritdoc into the super variable, and the variable expansion can expand it further
    • for the param, tparam and throws sections we must replace comments on the spot

    This is done separately, for two reasons: 1. It takes longer to run compared to merge 2. The inheritdoc annotation should not be used very often, as building the comment from pieces severely impacts performance

    parent

    The source (or parent) comment

    child

    The child (overriding member or usecase) comment

    sym

    The child symbol

    returns

    The child comment with the inheritdoc sections expanded

    Definition Classes
    DocComments
  380. def expandedDocComment(sym: Symbol, site: Symbol, docStr: String = ""): String

    The cooked doc comment of symbol sym after variable expansion, or "" if missing.

    The cooked doc comment of symbol sym after variable expansion, or "" if missing.

    sym

    The symbol for which doc comment is returned

    site

    The class for which doc comments are generated

    Definition Classes
    DocComments
    Exceptions thrown

    ExpansionLimitExceeded when more than 10 successive expansions of the same string are done, which is interpreted as a recursive variable definition.

  381. def explainTypes(op: (Type, Type) => Any, found: Type, required: Type): Unit
    Definition Classes
    Types
  382. def explainTypes(found: Type, required: Type): Unit
    Definition Classes
    Types
  383. def explicitlyUnit(tree: Tree): Boolean
    Definition Classes
    StdAttachments
  384. def extendCompilerClassPath(urls: URL*): Unit

    Extend classpath of platform and rescan updated packages.

    Extend classpath of platform and rescan updated packages.

    Definition Classes
    Global
  385. def extensionMethInfo(currentOwner: Symbol, extensionMeth: Symbol, origInfo: Type, clazz: Symbol): Type
    Definition Classes
    Types
  386. def fillDocComment(sym: Symbol, comment: DocComment): Unit
    Definition Classes
    DocComments
  387. final def fillList[T](n: Int)(t: T): List[T]
    Definition Classes
    Collections
  388. def findMacroClassLoader(): ClassLoader

    Obtains a ClassLoader instance used for macro expansion.

    Obtains a ClassLoader instance used for macro expansion.

    By default a new ScalaClassLoader is created using the classpath from global and the classloader of self as parent.

    Mirrors with runtime definitions (e.g. Repl) need to adjust this method.

    Definition Classes
    Plugins
  389. def findMemberFromRoot(fullName: Name): Symbol
    Definition Classes
    Global
  390. final def findOrElse[A](xs: IterableOnce[A])(p: (A) => Boolean)(orElse: => A): A
    Definition Classes
    Collections
  391. final def findPhaseWithName(phaseName: String): reflect.internal.Phase
    Definition Classes
    SymbolTable
  392. final def findSymbol(xs: IterableOnce[Symbol])(p: (Symbol) => Boolean): Symbol
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  393. final def flatCollect[A, B](elems: List[A])(pf: PartialFunction[A, Iterable[B]]): List[B]
    Definition Classes
    Collections
  394. final def flatMap2[A, B, C](xs1: List[A], xs2: List[B])(f: (A, B) => List[C]): List[C]
    Definition Classes
    Collections
  395. final def flattensToEmpty(xss: Seq[Seq[_]]): Boolean
    Definition Classes
    Collections
    Annotations
    @tailrec()
  396. final def focusInPlace(t: Tree): t.type
    Definition Classes
    Trees
  397. final def foldLeft2[A1, A2, B](xs1: List[A1], xs2: List[A2])(z0: B)(f: (B, A1, A2) => B): B
    Definition Classes
    Collections
  398. final def forall3[A, B, C](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) => Boolean): Boolean
    Definition Classes
    Collections
  399. final def foreach2[A, B](xs1: List[A], xs2: List[B])(f: (A, B) => Unit): Unit
    Definition Classes
    Collections
  400. final def foreach3[A, B, C](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) => Unit): Unit
    Definition Classes
    Collections
  401. def foreachParamss(sym: Symbol)(f: (Symbol) => Unit): Unit
    Definition Classes
    Symbols
  402. final def foreachWithIndex[A](xs: List[A])(f: (A, Int) => Unit): Unit
    Definition Classes
    Collections
  403. lazy val freshRunReq: CondPickler[FreshRunReq]
    Definition Classes
    Picklers
  404. def freshTermName(prefix: String)(implicit creator: FreshNameCreator): TermName
    Definition Classes
    FreshNames
  405. def freshTypeName(prefix: String)(implicit creator: FreshNameCreator): TypeName
    Definition Classes
    FreshNames
  406. def genPolyType(params: List[Symbol], tpe: Type): Type
    Definition Classes
    Types
  407. def getCurrentSymbolIdCount: Int
    Definition Classes
    Symbols
  408. def getSourceFile(name: String): SourceFile
    Definition Classes
    Global
  409. def getSourceFile(f: AbstractFile): BatchSourceFile
    Definition Classes
    Global
  410. def getUnitOf(s: SourceFile): Option[RichCompilationUnit]

    Return the compilation unit attached to a source file, or None if source is not loaded.

    Return the compilation unit attached to a source file, or None if source is not loaded.

    Definition Classes
    CompilerControl
  411. def glb(ts: List[Type]): Type
    Definition Classes
    GlbLubs
  412. def glbResults: HashMap[(Depth, List[Type]), Type]
    Definition Classes
    GlbLubs
  413. def globalError(pos: Position, msg: String): Unit
    Definition Classes
    Reporting
    Annotations
    @deprecatedOverriding()
  414. def globalError(msg: String): Unit
    Definition Classes
    Reporting
    Annotations
    @deprecatedOverriding()
  415. val globalFreshNameCreator: FreshNameCreator
    Definition Classes
    FreshNames
  416. var globalPhase: Phase
    Definition Classes
    Global
  417. final def hasLength(xs: List[_], len: Int): Boolean
    Definition Classes
    Collections
  418. final def howManyUniqueTypes: Int
    Definition Classes
    Types
  419. final def ifDebug(body: => Unit): Unit
    Definition Classes
    Global
    Annotations
    @inline()
  420. def importableMembers(pre: Type): Scope
    Definition Classes
    Types
  421. var infoTransformers: InfoTransformer
    Definition Classes
    SymbolTable
  422. def inform(pos: Position, msg: String): Unit
    Definition Classes
    Reporting
    Annotations
    @deprecatedOverriding()
  423. def inform(msg: String): Unit
    Definition Classes
    Reporting
    Annotations
    @deprecatedOverriding()
  424. final def informIDE(msg: => String): Unit

    Inform with msg only when verboseIDE is true.

    Inform with msg only when verboseIDE is true.

    Annotations
    @inline()
  425. def informProgress(msg: String): Unit
    Definition Classes
    SymbolTable
  426. def informTime(msg: String, startNs: Long): Unit
    Definition Classes
    SymbolTable
  427. final def informingProgress[T](msg: => String)(fn: => T): T
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  428. def inheritsJavaVarArgsMethod(clazz: Symbol): Boolean
    Definition Classes
    Types
  429. lazy val internal: Internal
    Definition Classes
    Global → Internals → Internals
  430. implicit def interruptReq: Pickler[InterruptReq]
    Definition Classes
    Picklers
  431. def intersectionType(tps: List[Type]): Type
    Definition Classes
    Types
  432. def intersectionType(tps: List[Type], owner: Symbol): Type
    Definition Classes
    Types
  433. def intersectionTypeForLazyBaseType(tps: List[Type]): Type
    Definition Classes
    Types
  434. def intersectionWitness: WeakHashMap[List[Type], WeakReference[Type]]
    Definition Classes
    Types
  435. def invalidateCaches(t: Type, updatedSyms: Set[Symbol]): Unit
    Definition Classes
    Types
  436. def invalidateClassPathEntries(paths: String*): Unit

    Invalidates packages that contain classes defined in a classpath entry, and rescans that entry.

    Invalidates packages that contain classes defined in a classpath entry, and rescans that entry.

    First, the classpath entry referred to by one of the paths is rescanned, so that any new files or changes in subpackages are picked up. Second, any packages for which one of the following conditions is met is invalidated:

    • the classpath entry contained during the last compilation run now contains classfiles that represent a member in the package;
    • the classpath entry now contains classfiles that represent a member in the package;
    • the set of subpackages has changed.

    The invalidated packages are reset in their entirety; all member classes and member packages are re-accessed using the new classpath.

    System packages that the compiler needs to access as part of standard definitions are not invalidated. A system package is: Any package rooted in "scala", with the exception of packages rooted in "scala.tools".

    paths

    Fully-qualified names that refer to directories or jar files that are entries on the classpath.

    Definition Classes
    Global
  437. def invalidateTreeTpeCaches(tree: Tree, updatedSyms: Set[Symbol]): Unit
    Definition Classes
    Types
  438. final def isAtPhaseAfter(p: reflect.internal.Phase): Boolean
    Definition Classes
    SymbolTable
  439. def isBefore(phase: Phase): Boolean
    Definition Classes
    Global
  440. def isBeforeErasure: Boolean
    Definition Classes
    Global
  441. def isBoundedGeneric(tp: Type): Boolean
    Definition Classes
    Types
  442. def isCompilerUniverse: Boolean
    Definition Classes
    Global → SymbolTable
  443. def isConstantType(tp: Type): Boolean
    Definition Classes
    Types
  444. final def isDeveloper: Boolean
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  445. def isDifferentType(tp1: Type, tp2: Type): Boolean
    Definition Classes
    TypeComparers
  446. def isDifferentTypeConstructor(tp1: Type, tp2: Type): Boolean
    Definition Classes
    TypeComparers
  447. final def isEligibleForPrefixUnification(tp: Type): Boolean
    Definition Classes
    Types
    Annotations
    @tailrec()
  448. def isErrorOrWildcard(tp: Type): Boolean
    Definition Classes
    Types
  449. final def isExistentialType(tp: Type): Boolean
    Definition Classes
    Types
    Annotations
    @tailrec()
  450. def isGlobalInitialized: Boolean
    Definition Classes
    Global
  451. def isHKSubType(tp1: Type, tp2: Type, depth: Depth): Boolean
    Definition Classes
    TypeComparers
  452. def isImplicitMethodType(tp: Type): Boolean
    Definition Classes
    Types
  453. def isIntersectionTypeForLazyBaseType(tp: RefinedType): Boolean
    Definition Classes
    Types
  454. def isJavaVarargsAncestor(clazz: Symbol): Boolean
    Definition Classes
    Types
  455. def isNonRefinementClassType(tpe: Type): Boolean
    Definition Classes
    Types
  456. def isNumericSubType(tp1: Type, tp2: Type): Boolean
    Definition Classes
    TypeComparers
  457. def isOutOfDate: Boolean
  458. def isPast(phase: Phase): Boolean
    Definition Classes
    Global
  459. def isPastTyper: Boolean
    Definition Classes
    Global → SymbolTable
  460. def isPopulated(tp1: Type, tp2: Type): Boolean
    Definition Classes
    Types
  461. def isPossiblePrefix(clazz: Symbol): Boolean
    Definition Classes
    TypeMaps
  462. def isRawIfWithoutArgs(sym: Symbol): Boolean
    Definition Classes
    Types
  463. def isRawParameter(sym: Symbol): Boolean
    Definition Classes
    ExistentialsAndSkolems
  464. def isRawType(tp: Type): Boolean
    Definition Classes
    Types
  465. def isSameSymbolTypes(syms1: List[Symbol], syms2: List[Symbol]): Boolean
    Definition Classes
    Types
  466. def isSameType(tp1: Type, tp2: Type): Boolean
    Definition Classes
    TypeComparers
  467. def isSameType2(tp1: Type, tp2: Type): Boolean
    Definition Classes
    TypeComparers
  468. def isSameTypes(tps1: List[Type], tps2: List[Type]): Boolean
    Definition Classes
    Types
  469. def isSingleType(tp: Type): Boolean
    Definition Classes
    Types
  470. def isSubArgs(tps1: List[Type], tps2: List[Type], tparams: List[Symbol], depth: Depth): Boolean
    Definition Classes
    Types
  471. def isSubType(tp1: Type, tp2: Type, depth: Depth): Boolean
    Definition Classes
    TypeComparers
  472. def isTreeSymbolPickled(tree: Tree): Boolean
    Definition Classes
    Translations
  473. def isTreeSymbolPickled(code: Int): Boolean
    Definition Classes
    Translations
  474. def isUnboundedGeneric(tp: Type): Boolean
    Definition Classes
    Types
  475. def isUseableAsTypeArg(tp: Type): Boolean
    Definition Classes
    Types
  476. final def isUseableAsTypeArgs(tps: List[Type]): Boolean
    Definition Classes
    Types
    Annotations
    @tailrec()
  477. final def isValid(period: Period): Boolean
    Definition Classes
    SymbolTable
  478. final def isValidForBaseClasses(period: Period): Boolean
    Definition Classes
    SymbolTable
  479. def isWeakSubType(tp1: Type, tp2: Type): Boolean
    Definition Classes
    TypeComparers
  480. def isWithinBounds(pre: Type, owner: Symbol, tparams: List[Symbol], targs: List[Type]): Boolean
    Definition Classes
    Types
  481. val javanme: JavaKeywords
    Definition Classes
    StdNames
  482. var keepPhaseStack: Boolean
    Definition Classes
    SymbolTable
  483. def kindsConform(tparams: List[Symbol], targs: List[Type], pre: Type, owner: Symbol): Boolean
    Definition Classes
    Kinds
  484. final def linkedMapFrom[A, A1 >: A, B](xs: List[A])(f: (A) => B): LinkedHashMap[A1, B]
    Definition Classes
    Collections
  485. lazy val loaders: SymbolLoadersInInteractive

    Symbol loaders in the IDE parse all source files loaded from a package for top-level idents.

    Symbol loaders in the IDE parse all source files loaded from a package for top-level idents. Therefore, we can detect top-level symbols that have a name different from their source file

    Definition Classes
    GlobalGlobal
  486. def locateContext(contexts: Contexts, pos: Position): Option[Context]

    Returns the most precise context possible for the given pos.

    Returns the most precise context possible for the given pos.

    It looks for the finest ContextTree containing pos, and then look inside this ContextTree for a child ContextTree located immediately before pos. If such a child exists, returns its context, otherwise returns the context of the parent ContextTree.

    This is required to always return a context which contains the all the imports declared up to pos (see scala/bug#7280 for a test case).

    Can return None if pos is before any valid Scala code.

    Definition Classes
    ContextTrees
  487. def locateContext(pos: Position): Option[Context]

    Locates smallest context that encloses position as an optional value.

    Locates smallest context that encloses position as an optional value.

    Definition Classes
    CompilerControl
  488. def locateContextTree(contexts: Contexts, pos: Position): Option[ContextTree]

    Returns the ContextTree containing pos, or the ContextTree positioned just before pos, or None if pos is located before all ContextTrees.

    Returns the ContextTree containing pos, or the ContextTree positioned just before pos, or None if pos is located before all ContextTrees.

    Definition Classes
    ContextTrees
  489. def locateTree(pos: Position): Tree

    Locate smallest tree that encloses position

    Locate smallest tree that encloses position

    Definition Classes
    CompilerControl
    Note

    Pre-condition: Position must be loaded

  490. def lockedCount: Int
    Definition Classes
    Symbols
  491. def lockedCount_=(i: Int): Unit
    Definition Classes
    Symbols
  492. final def log(msg: => AnyRef): Unit
    Definition Classes
    Global → SymbolTable
    Annotations
    @inline()
  493. val log: LogReplay
  494. def logError(msg: String, t: Throwable): Unit
    Definition Classes
    Global
  495. final def lookupTypeName(cs: Array[Char]): TypeName
    Definition Classes
    Names
  496. final def lookupVariable(vble: String, site: Symbol): Option[String]

    Lookup definition of variable.

    Lookup definition of variable.

    vble

    The variable for which a definition is searched

    site

    The class for which doc comments are generated

    Definition Classes
    DocComments
    Annotations
    @tailrec()
  497. implicit def lowPriorityNameOrdering[T <: Name]: Ordering[T]
    Definition Classes
    SymbolTable
  498. def lub(ts: List[Type]): Type
    Definition Classes
    GlbLubs
  499. def lubDepth(ts: List[Type]): Depth
    Definition Classes
    Types
  500. def lubList(ts: List[Type], depth: Depth): List[Type]
    Definition Classes
    GlbLubs
  501. def lubResults: HashMap[(Depth, List[Type]), Type]
    Definition Classes
    GlbLubs
  502. final def map2[A, B, C](xs1: List[A], xs2: List[B])(f: (A, B) => C): List[C]
    Definition Classes
    Collections
  503. final def map2Conserve[A <: AnyRef, B](xs: List[A], ys: List[B])(f: (A, B) => A): List[A]
    Definition Classes
    Collections
  504. final def map3[A, B, C, D](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) => D): List[D]
    Definition Classes
    Collections
  505. final def mapFilter2[A, B, C](itA: Iterator[A], itB: Iterator[B])(f: (A, B) => Option[C]): Iterator[C]
    Definition Classes
    Collections
  506. final def mapFrom[A, A1 >: A, B](xs: List[A])(f: (A) => B): Map[A1, B]
    Definition Classes
    Collections
  507. final def mapFromArray[A, B](arr: Array[A])(f: (A) => B): List[B]
    Definition Classes
    Collections
  508. final def mapList[A, B](as: List[A])(f: (A) => B): List[B]
    Definition Classes
    Collections
  509. def mapParamss[T](sym: Symbol)(f: (Symbol) => T): List[List[T]]
    Definition Classes
    Symbols
  510. final def mapToArray[A, B](as: List[A], arr: Array[B], i: Int)(f: (A) => B): Unit
    Definition Classes
    Collections
  511. final def mapToArray[A, B](xs: List[A])(f: (A) => B)(implicit arg0: ClassTag[B]): Array[B]
    Definition Classes
    Collections
  512. final def mapWithIndex[A, B](xs: List[A])(f: (A, Int) => B): List[B]
    Definition Classes
    Collections
  513. final def markAllCompleted(sym1: Symbol, sym2: Symbol): Unit
    Definition Classes
    Symbols
  514. final def markAllCompleted(sym: Symbol): Unit
    Definition Classes
    Symbols
  515. final def markFlagsCompleted(sym1: Symbol, sym2: Symbol)(mask: Long): Unit
    Definition Classes
    Symbols
  516. final def markFlagsCompleted(sym: Symbol)(mask: Long): Unit
    Definition Classes
    Symbols
  517. final def matchesType(tp1: Type, tp2: Type, alwaysMatchSimple: Boolean): Boolean
    Definition Classes
    Types
  518. final val maxToStringRecursions: Int(50)
    Definition Classes
    TypeToStrings
  519. def merge(src: String, dst: String, sym: Symbol, copyFirstPara: Boolean = false): String

    Merge elements of doccomment src into doc comment dst for symbol sym.

    Merge elements of doccomment src into doc comment dst for symbol sym. In detail:

    1. If copyFirstPara is true, copy first paragraph 2. For all parameters of sym if there is no @param section in dst for that parameter name, but there is one on src, copy that section. 3. If there is no @return section in dst but there is one in src, copy it.
    Definition Classes
    DocComments
  520. def mergePrefixAndArgs(tps0: List[Type], variance: reflect.internal.Variance, depth: Depth): Type
    Definition Classes
    Types
  521. final def mexists[A](xss: List[List[A]])(p: (A) => Boolean): Boolean
    Definition Classes
    Collections
  522. final def mfind[A](xss: List[List[A]])(p: (A) => Boolean): Option[A]
    Definition Classes
    Collections
  523. final def mforall[A](xss: List[List[A]])(p: (A) => Boolean): Boolean
    Definition Classes
    Collections
  524. final def mforeach[A](xss: Iterable[Iterable[A]])(f: (A) => Unit): Unit
    Definition Classes
    Collections
  525. final def mforeach[A](xss: List[List[A]])(f: (A) => Unit): Unit
    Definition Classes
    Collections
  526. def mirrorThatLoaded(sym: Symbol): Mirror

    Returns the mirror that loaded given symbol

    Returns the mirror that loaded given symbol

    Definition Classes
    Global → SymbolTable
  527. val missingAliasException: MissingAliasControl
    Definition Classes
    Types
  528. def missingHook(owner: Symbol, name: Name): Symbol
    Definition Classes
    SymbolTable
  529. def mkImporter(from0: Universe): Importer { val from: from0.type }
    Definition Classes
    Importers
  530. final def mmap[A, B](xss: List[List[A]])(f: (A) => B): collection.immutable.List[collection.immutable.List[B]]
    Definition Classes
    Collections
  531. def moveToFront(fs: List[SourceFile]): Unit

    Move list of files to front of allSources

  532. final val nameDebug: Boolean(false)
    Definition Classes
    Names
  533. implicit lazy val namePickler: Pickler[Name]
    Definition Classes
    Picklers
  534. final def nameTableSize: Int
    Definition Classes
    Names
  535. def nestedMemberType(sym: Symbol, pre: Type, owner: Symbol): Type
    Definition Classes
    Types
  536. def newCodePrinter(writer: PrintWriter, tree: Tree, printRootPkg: Boolean): InternalTreePrinter
    Definition Classes
    Printers → Printers
  537. def newCompactTreePrinter(writer: PrintWriter): CompactTreePrinter
    Definition Classes
    Printers
  538. def newCompilationUnit(code: String, filename: String = "<console>"): CompilationUnit
    Definition Classes
    Global
  539. def newDefDef(sym: Symbol, rhs: Tree)(mods: Modifiers, name: TermName, tparams: List[TypeDef], vparamss: List[List[ValDef]], tpt: Tree): DefDef
    Definition Classes
    Trees
  540. final def newExistentialType(quantified: List[Symbol], underlying: Type): Type
    Definition Classes
    Types
    Annotations
    @tailrec()
  541. def newFreeTermSymbol(name: TermName, value: => Any, flags: Long, origin: String): FreeTermSymbol
    Definition Classes
    Symbols
  542. def newFreeTypeSymbol(name: TypeName, flags: Long, origin: String): FreeTypeSymbol
    Definition Classes
    Symbols
  543. def newJavaUnitParser(unit: CompilationUnit): (syntaxAnalyzer)#JavaUnitParser
    Definition Classes
    Global
  544. def newLazyTreeCopier: TreeCopier
    Definition Classes
    Trees → Trees
  545. final def newNestedScope(outer: Scope): Scope
    Definition Classes
    Scopes
  546. def newPackageScope(pkgClass: Symbol): Scope
    Definition Classes
    Scopes
  547. def newRawTreePrinter(writer: PrintWriter): RawTreePrinter
    Definition Classes
    Printers → Printers
  548. def newScope: Scope
    Definition Classes
    Scopes
  549. def newScopeWith(elems: Symbol*): Scope
    Definition Classes
    Scopes
  550. def newSourceFile(code: String, filename: String = "<console>"): BatchSourceFile
    Definition Classes
    Global
  551. def newStandardTreePrinter(writer: PrintWriter): AstTreePrinter
    Definition Classes
    Printers
  552. def newStrictTreeCopier: TreeCopier
    Definition Classes
    Trees → Trees
  553. def newStubSymbol(owner: Symbol, name: Name, missingMessage: String): Symbol
    Definition Classes
    Global → Symbols
  554. final def newTermName(bs: Array[Byte], offset: Int, len: Int): TermName
    Definition Classes
    Names
  555. def newTermName(s: String): TermName
    Definition Classes
    Names → Names
    Annotations
    @deprecatedOverriding()
  556. final def newTermName(cs: Array[Char], offset: Int, len0: Int, cachedString: String): TermName
    Definition Classes
    Names
  557. final def newTermName(cs: Array[Char]): TermName
    Definition Classes
    Names
  558. final def newTermName(cs: Array[Char], offset: Int, len: Int): TermName
    Definition Classes
    Names
  559. final def newTermNameCached(s: String): TermName
    Definition Classes
    Names
  560. def newTreePrinter(): AstTreePrinter
    Definition Classes
    Printers → Printers
  561. def newTreePrinter(stream: OutputStream): AstTreePrinter
    Definition Classes
    Printers → Printers
  562. def newTreePrinter(writer: PrintWriter): AstTreePrinter
    Definition Classes
    Printers → Printers → Printers
  563. def newTypeDef(sym: Symbol, rhs: Tree)(mods: Modifiers, name: TypeName, tparams: List[TypeDef]): TypeDef
    Definition Classes
    Trees
  564. final def newTypeName(bs: Array[Byte], offset: Int, len: Int): TypeName
    Definition Classes
    Names
  565. final def newTypeName(cs: Array[Char], offset: Int, len: Int): TypeName
    Definition Classes
    Names
  566. def newTypeName(s: String): TypeName
    Definition Classes
    Names → Names
    Annotations
    @deprecatedOverriding()
  567. final def newTypeName(cs: Array[Char], offset: Int, len: Int, cachedString: String): TypeName
    Definition Classes
    Names
  568. final def newTypeName(cs: Array[Char]): TypeName
    Definition Classes
    Names
  569. final def newTypeNameCached(s: String): TypeName
    Definition Classes
    Names
  570. def newTyperRun(): Unit
  571. def newUnitParser(code: String, filename: String = "<console>"): (syntaxAnalyzer)#UnitParser
    Definition Classes
    Global
  572. def newUnitParser(unit: CompilationUnit): (syntaxAnalyzer)#UnitParser
    Definition Classes
    Global
  573. def newUnitScanner(unit: CompilationUnit): (syntaxAnalyzer)#UnitScanner
    Definition Classes
    Global
  574. def newValDef(sym: Symbol, rhs: Tree)(mods: Modifiers, name: TermName, tpt: Tree): ValDef
    Definition Classes
    Trees
  575. var nextFrom: Array[InfoTransformer]
    Definition Classes
    SymbolTable
  576. lazy val noPosition: CondPickler[reflect.internal.util.NoPosition.type]
    Definition Classes
    Picklers
  577. val nodeToString: (Tree) => String
    Definition Classes
    Global
  578. def nonTrivialMembers(clazz: Symbol): Scope
    Definition Classes
    Types
  579. final def normalizePlus(tp: Type): Type
    Definition Classes
    Types
    Annotations
    @tailrec()
  580. def numericLub(ts: List[Type]): Type
    Definition Classes
    GlbLubs
  581. lazy val offsetPosition: CondPickler[Position]
    Definition Classes
    Picklers
  582. def onCompilerThread: Boolean
    Definition Classes
    CompilerControl
  583. def onUnitOf[T](source: SourceFile)(op: (RichCompilationUnit) => T): T

    Run operation op on a compilation unit associated with given source.

    Run operation op on a compilation unit associated with given source. If source has a loaded compilation unit, this one is passed to op. Otherwise a new compilation unit is created, but not added to the set of loaded units.

    Definition Classes
    CompilerControl
  584. def openPackageModule(pkgClass: Symbol, force: Boolean): Unit
    Definition Classes
    GlobalGlobal → SymbolTable
  585. def openPackageModule(container: Symbol, dest: Symbol): Unit
    Definition Classes
    SymbolTable
  586. def optimizerClassPath(base: ClassPath): ClassPath
    Definition Classes
    Global
  587. def overloadedType(pre: Type, alternatives: List[Symbol]): Type
    Definition Classes
    Types
  588. final def packSymbols(hidden: List[Symbol], tp: Type, rawOwner: Symbol): Type
    Definition Classes
    ExistentialsAndSkolems
  589. def paramString(tp: Type): String
    Definition Classes
    TypeDebugging
  590. def parseTree(source: SourceFile): Tree

    Returns parse tree for source source.

    Returns parse tree for source source. No symbols are entered. Syntax errors are reported.

    This method is thread-safe and as such can safely run outside of the presentation compiler thread.

    Definition Classes
    CompilerControl
  591. final def partitionConserve[A](as: List[A])(p: (A) => Boolean): (List[A], List[A])
    Definition Classes
    Collections
  592. final def partitionInto[A](xs: List[A], pred: (A) => Boolean, ayes: ListBuffer[A], nays: ListBuffer[A]): Unit
    Definition Classes
    Collections
  593. def patch(f: AbstractFile, d: Diff): Array[Char]
    Definition Classes
    Picklers
  594. def pendingBaseTypes: HashSet[Type]
    Definition Classes
    Types
  595. def pendingSubTypes: HashSet[SubTypePair]
    Definition Classes
    TypeComparers
  596. final def period(rid: RunId, pid: Int): Period
    Definition Classes
    SymbolTable
  597. final def phase: reflect.internal.Phase
    Definition Classes
    SymbolTable
  598. def phaseDescriptions: String

    A description of the phases that will run in this configuration, or all if -Vdebug.

    A description of the phases that will run in this configuration, or all if -Vdebug.

    Definition Classes
    Global
  599. lazy val phaseDescriptors: List[SubComponent]
    Definition Classes
    Global
  600. def phaseFlagDescriptions: String

    Summary of the per-phase values of nextFlags and newFlags, shown under -Vphases -Vdebug.

    Summary of the per-phase values of nextFlags and newFlags, shown under -Vphases -Vdebug.

    Definition Classes
    Global
  601. final def phaseId(period: Period): Int
    Definition Classes
    SymbolTable
  602. lazy val phaseNames: collection.immutable.List[String]

    The names of the phases.

    The names of the phases.

    Definition Classes
    Global
  603. final def phaseOf(period: Period): reflect.internal.Phase
    Definition Classes
    SymbolTable
  604. final val phaseWithId: Array[reflect.internal.Phase]
    Definition Classes
    SymbolTable
  605. final def phase_=(p: reflect.internal.Phase): Unit
    Definition Classes
    SymbolTable
  606. def picklerPhase: Phase
    Definition Classes
    Global → SymbolTable
  607. def picklerSubTag(tree: Tree): Int
    Definition Classes
    Translations
  608. final def picklerTag(tpe: Type): Int
    Definition Classes
    Translations
    Annotations
    @tailrec()
  609. def picklerTag(sym: Symbol): Int
    Definition Classes
    Translations
  610. final def picklerTag(ref: AnyRef): Int
    Definition Classes
    Translations
  611. lazy val platform: ThisPlatform
    Definition Classes
    Global
  612. def pluginDescriptions: String

    A description of all the plugins that are loaded

    A description of all the plugins that are loaded

    Definition Classes
    Plugins
  613. def pluginOptionsHelp: String

    Summary of the options for all loaded plugins

    Summary of the options for all loaded plugins

    Definition Classes
    Plugins
  614. lazy val plugins: List[Plugin]
    Definition Classes
    Plugins
  615. final def popPhase(ph: reflect.internal.Phase): Unit
    Definition Classes
    SymbolTable
  616. implicit lazy val position: Pickler[Position]
    Definition Classes
    Picklers
  617. def printAllUnits(): Unit
    Definition Classes
    Global
  618. var printTypings: Boolean

    Switch to turn on detailed type logs

    Switch to turn on detailed type logs

    Definition Classes
    Global
  619. def propagateCyclicReferences: Boolean
    Definition Classes
    Global
  620. def propagatePackageBoundary(jflags: JavaAccFlags, syms: Symbol*): Unit
    Definition Classes
    PrivateWithin
  621. def propagatePackageBoundary(m: java.lang.reflect.Member, syms: Symbol*): Unit
    Definition Classes
    PrivateWithin
  622. def propagatePackageBoundary(c: Class[_], syms: Symbol*): Unit
    Definition Classes
    PrivateWithin
  623. final def pushPhase(ph: reflect.internal.Phase): reflect.internal.Phase
    Definition Classes
    SymbolTable
  624. def quotedName(name: String): String
    Definition Classes
    Printers
  625. def quotedName(name: Name): String
    Definition Classes
    Printers
  626. def quotedName(name: Name, decode: Boolean): String
    Definition Classes
    Printers
  627. def rangePos(source: SourceFile, start: Int, point: Int, end: Int): Position
    Definition Classes
    Positions
  628. lazy val rangePosition: CondPickler[Position]
    Definition Classes
    Picklers
  629. def rawDocComment(sym: Symbol): String

    The raw doc comment of symbol sym, as it appears in the source text, "" if missing.

    The raw doc comment of symbol sym, as it appears in the source text, "" if missing.

    Definition Classes
    DocComments
  630. def rawToExistential: TypeMap
    Definition Classes
    TypeMaps
  631. def recentlyDeleted(): List[Symbol]

    Returns the top level classes and objects that were deleted in the editor since last time recentlyDeleted() was called.

    Returns the top level classes and objects that were deleted in the editor since last time recentlyDeleted() was called.

    Definition Classes
    CompilerControl
  632. def recursionTable: Map[Symbol, Int]
    Definition Classes
    Symbols
  633. def recursionTable_=(value: Map[Symbol, Int]): Unit
    Definition Classes
    Symbols
  634. def referenceCapturedVariable(vble: Symbol): Tree
    Definition Classes
    CapturedVariables
  635. def refinedType(parents: List[Type], owner: Symbol): Type
    Definition Classes
    Types
  636. def refinedType(parents: List[Type], owner: Symbol, decls: Scope, pos: Position): Type
    Definition Classes
    Types
  637. def registerContext(c: Context): Unit

    Called from typechecker every time a context is created.

    Called from typechecker every time a context is created. Registers the context in a context tree

    Definition Classes
    GlobalGlobal
  638. def registerTopLevelSym(sym: Symbol): Unit

    Called from typechecker every time a top-level class or object is entered.

    Called from typechecker every time a top-level class or object is entered.

    Definition Classes
    GlobalGlobal
  639. macro def reify[T](expr: T): Expr[T]
    Definition Classes
    Universe
  640. implicit def reloadItem: CondPickler[ReloadItem]
    Definition Classes
    Picklers
  641. def removeAllAnnotationCheckers(): Unit
    Definition Classes
    AnnotationCheckers
  642. def removeUnitOf(s: SourceFile): Option[RichCompilationUnit]

    Removes the CompilationUnit corresponding to the given SourceFile from consideration for recompilation.

    Removes the CompilationUnit corresponding to the given SourceFile from consideration for recompilation.

    Definition Classes
    CompilerControl
  643. def repackExistential(tp: Type): Type
    Definition Classes
    Types
  644. def replaceInheritDocToInheritdoc(docStr: String): String
    Definition Classes
    DocComments
  645. def reportThrowable(t: Throwable): Unit
    Definition Classes
    Global
  646. def reporter: FilteringReporter
    Definition Classes
    Global → Reporting
  647. def reporter_=(newReporter: Reporter): Unit
    Definition Classes
    Global
  648. final def require(requirement: Boolean, message: => Any): Unit
    Definition Classes
    SymbolTable
    Annotations
    @inline()
  649. def resetAttrs(x: Tree): Tree

    Definition Classes
    Trees
    See also

    ResetAttrs

  650. def respond[T](result: Response[T])(op: => T): Unit
  651. def respondGradually[T](response: Response[T])(op: => LazyList[T]): Unit
  652. lazy val rootMirror: Mirror
    Definition Classes
    Global → Mirrors
  653. final def runId(period: Period): RunId
    Definition Classes
    SymbolTable
  654. def runReporting: PerRunReporting
    Definition Classes
    Global
  655. final def sameElementsEquals(thiss: List[AnyRef], that: List[AnyRef]): Boolean
    Definition Classes
    Collections
  656. final def sameLength(xs1: List[_], xs2: List[_]): Boolean
    Definition Classes
    Collections
  657. def sameWeakLubAsLub(tps: List[Type]): Boolean
    Definition Classes
    GlbLubs
  658. def scopeTransform(owner: Symbol)(op: => Scope): Scope
    Definition Classes
    Scopes
  659. final def sequenceOpt[A](as: List[Option[A]]): Option[List[A]]
    Definition Classes
    Collections
  660. def setPackageAccessBoundary(sym: Symbol): Symbol
    Definition Classes
    PrivateWithin
  661. def settings: Settings
    Definition Classes
    GlobalReporting → SymbolTable
  662. val shorthands: Set[String]
    Definition Classes
    Types
  663. def shouldLogAtThisPhase: Boolean
    Definition Classes
    Global → SymbolTable
  664. def show(position: Position): String
    Definition Classes
    Printers → Printers
  665. def show(flags: FlagSet): String
    Definition Classes
    Printers → Printers
  666. def show(name: Name): String
    Definition Classes
    Printers → Printers
  667. def show(any: Any, printTypes: BooleanFlag, printIds: BooleanFlag, printOwners: BooleanFlag, printKinds: BooleanFlag, printMirrors: BooleanFlag, printPositions: BooleanFlag): String
    Definition Classes
    Printers
  668. def showCode(tree: Tree, printTypes: BooleanFlag, printIds: BooleanFlag, printOwners: BooleanFlag, printPositions: BooleanFlag, printRootPkg: Boolean): String
    Definition Classes
    Printers
  669. def showDecl(sym: Symbol): String
    Definition Classes
    Printers → Printers
  670. def showDef(fullName: Name, declsOnly: Boolean, ph: Phase): Unit

    We resolve the class/object ambiguity by passing a type/term name.

    We resolve the class/object ambiguity by passing a type/term name.

    Definition Classes
    Global
  671. def showRaw(position: Position): String
    Definition Classes
    Printers
  672. def showRaw(flags: FlagSet): String
    Definition Classes
    Printers
  673. def showRaw(name: Name): String
    Definition Classes
    Printers
  674. def showRaw(any: Any, printTypes: BooleanFlag, printIds: BooleanFlag, printOwners: BooleanFlag, printKinds: BooleanFlag, printMirrors: BooleanFlag, printPositions: BooleanFlag): String
    Definition Classes
    Printers
  675. lazy val shutdownReq: CondPickler[ShutdownReq.type]
    Definition Classes
    Picklers
  676. def signalDone(context: Context, old: Tree, result: Tree): Unit

    Called from typechecker, which signals hereby that a node has been completely typechecked.

    Called from typechecker, which signals hereby that a node has been completely typechecked. If the node includes unit.targetPos, abandons run and returns newly attributed tree. Otherwise, if there's some higher priority work to be done, also abandons run with a FreshRunReq.

    context

    The context that typechecked the node

    old

    The original node

    result

    The transformed node

    Definition Classes
    GlobalGlobal
  677. def signalParseProgress(pos: Position): Unit

    Called from parser, which signals hereby that a method definition has been parsed.

    Called from parser, which signals hereby that a method definition has been parsed.

    Definition Classes
    GlobalGlobal
  678. def signalParsedDocComment(comment: String, pos: Position): Unit

    Called by ScaladocAnalyzer when a doc comment has been parsed.

    Called by ScaladocAnalyzer when a doc comment has been parsed.

    Definition Classes
    Global
  679. def singleType(pre: Type, sym: Symbol): Type
    Definition Classes
    Types
  680. def singletonBounds(hi: Type): TypeBounds
    Definition Classes
    Types
  681. def skolemizationLevel: Int
    Definition Classes
    Types
  682. def skolemizationLevel_=(value: Int): Unit
    Definition Classes
    Types
  683. def slowButSafeEnteringPhase[T](ph: reflect.internal.Phase)(op: => T): T
    Definition Classes
    SymbolTable
  684. def slowButSafeEnteringPhaseNotLaterThan[T](target: reflect.internal.Phase)(op: => T): T
    Definition Classes
    SymbolTable
  685. lazy val sn: SymbolNames
    Definition Classes
    StdNames
  686. def solve(tvars: List[TypeVar], tparams: List[Symbol], getVariance: Extractor[Symbol], upper: Boolean, depth: Depth): Boolean
    Definition Classes
    TypeConstraints
  687. implicit lazy val sourceFile: Pickler[SourceFile]
    Definition Classes
    Picklers
  688. def spanningTypes(ts: List[Type]): List[Type]
    Definition Classes
    GlbLubs
  689. def specializesSym(tp: Type, sym: Symbol, depth: Depth): Boolean
    Definition Classes
    Types
  690. def stabilizedType(tree: Tree): Type
  691. final def stripExistentialsAndTypeVars(ts: List[Type], expandLazyBaseType: Boolean): (List[Type], List[Symbol])
    Definition Classes
    Types
  692. def subsametypeRecursions: Int
    Definition Classes
    TypeComparers
  693. def subsametypeRecursions_=(value: Int): Unit
    Definition Classes
    TypeComparers
  694. final def sumSize(xss: List[List[_]], acc: Int): Int
    Definition Classes
    Collections
    Annotations
    @tailrec()
  695. def supplementErrorMessage(errorMessage: String): String
    Definition Classes
    Reporting
  696. def supplementTyperState(errorMessage: String): String

    Don't want to introduce new errors trying to report errors, so swallow exceptions.

    Don't want to introduce new errors trying to report errors, so swallow exceptions.

    Definition Classes
    Global → Reporting
  697. final def suspendingTypeVars[T](tvs: List[TypeVar])(op: => T): T
    Definition Classes
    Types
    Annotations
    @inline()
  698. def symName(tree: Tree, name: Name): String
    Definition Classes
    Printers
  699. implicit lazy val symPickler: Pickler[Symbol]
    Definition Classes
    Picklers
  700. def symbolOf[T](implicit arg0: WeakTypeTag[T]): TypeSymbol
    Definition Classes
    Symbols
  701. def syncTopLevelSyms(unit: RichCompilationUnit): Unit

    Update deleted and current top-level symbols sets

  702. lazy val syntaxAnalyzer: SyntaxAnalyzer { ... /* 2 definitions in type refinement */ }
    Definition Classes
    Global
  703. lazy val termNames: nme.type
    Definition Classes
    StdNames
  704. implicit lazy val throwable: Pickler[Throwable]
    Definition Classes
    Picklers
  705. def throwableAsString(t: Throwable): String
    Definition Classes
    Global → SymbolTable
  706. def throwableAsString(t: Throwable, maxFrames: Int): String
    Definition Classes
    SymbolTable
  707. def toStringRecursions: Int
    Definition Classes
    TypeToStrings
  708. def toStringRecursions_=(value: Int): Unit
    Definition Classes
    TypeToStrings
  709. def toStringSubjects: HashSet[Type]
    Definition Classes
    TypeToStrings
  710. final val traceSymbolActivity: Boolean
    Definition Classes
    SymbolTable
  711. def transformedType(tpe: Type): Type forSome {val _1: PostErasure { val global: Global.this.type }}
    Definition Classes
    Transforms
  712. def transformedType(sym: Symbol): Type forSome {val stabilizer$1: PostErasure { val global: Global.this.type }}
    Definition Classes
    Transforms
  713. lazy val transparentPosition: CondPickler[Position]
    Definition Classes
    Picklers
  714. def transparentShallowTransform(container: Symbol, tp: Type)(f: (Type) => Type): Type
    Definition Classes
    Types
  715. final def transposeSafe[A](ass: List[List[A]]): Option[List[List[A]]]
    Definition Classes
    Collections
  716. final def traverseOpt[A, B](as: List[A])(f: (A) => Option[B]): Option[List[B]]
    Definition Classes
    Collections
  717. val treeBrowser: Global.treeBrowsers.SwingBrowser
    Definition Classes
    Global
  718. lazy val treeBuild: TreeGen
    Definition Classes
    Internals
  719. lazy val treeBuilder: TreeBuilder { val global: Global.this.type }

    A spare instance of TreeBuilder left for backwards compatibility.

    A spare instance of TreeBuilder left for backwards compatibility.

    Definition Classes
    Global
  720. val treeCopy: TreeCopier
    Definition Classes
    Trees
  721. final def typeDepth(tp: Type): Depth
    Definition Classes
    Types
  722. def typeFun(tps: List[Symbol], body: Type): Type
    Definition Classes
    Types
  723. lazy val typeNames: tpnme.type
    Definition Classes
    StdNames
  724. def typeOf[T](implicit ttag: TypeTag[T]): Type
    Definition Classes
    TypeTags
  725. def typeParamsString(tp: Type): String
    Definition Classes
    TypeDebugging
  726. def typeParamsToExistentials(clazz: Symbol): List[Symbol]
    Definition Classes
    Types
  727. def typeParamsToExistentials(clazz: Symbol, tparams: List[Symbol]): List[Symbol]
    Definition Classes
    Types
  728. final def typeRef(pre: Type, sym: Symbol, args: List[Type]): Type
    Definition Classes
    Types
    Annotations
    @tailrec()
  729. def typeTag[T](implicit ttag: TypeTag[T]): TypeTag[T]
    Definition Classes
    TypeTags
  730. def typeVarsInType(tp: Type): List[TypeVar]
    Definition Classes
    Types
  731. final def uncheckedBounds(tp: Type): Type
    Definition Classes
    Types
  732. lazy val undetBaseTypeSeq: BaseTypeSeq
    Definition Classes
    BaseTypeSeqs
  733. def undoLog: UndoLog
    Definition Classes
    TypeConstraints
  734. val unitOfFile: Map[AbstractFile, RichCompilationUnit]

    A map of all loaded files to the rich compilation units that correspond to them.

  735. def useCases(sym: Symbol, site: Symbol): List[(Symbol, String, Position)]

    The list of use cases of doc comment of symbol sym seen as a member of class site.

    The list of use cases of doc comment of symbol sym seen as a member of class site. Each use case consists of a synthetic symbol (which is entered nowhere else), of an expanded doc comment string, and of its position.

    sym

    The symbol for which use cases are returned

    site

    The class for which doc comments are generated

    Definition Classes
    DocComments
    Exceptions thrown

    ExpansionLimitExceeded when more than 10 successive expansions of the same string are done, which is interpreted as a recursive variable definition.

  736. val useOffsetPositions: Boolean
    Definition Classes
    GlobalGlobal → Positions
  737. def validateClassInfo(tp: ClassInfoType): Unit
    Definition Classes
    Types
  738. def validatePositions(tree: Tree): Unit
    Definition Classes
    Positions
  739. final def varianceInType(tp: Type, considerUnchecked: Boolean)(tparam: Symbol): reflect.internal.Variance
    Definition Classes
    Variances
  740. final def varianceInTypes(tps: List[Type])(tparam: Symbol): reflect.internal.Variance
    Definition Classes
    Variances
  741. val verboseIDE: Boolean
  742. final def warningFreshNameCreator: FreshNameCreator

    Creates a FreshNameCreator that reports an error if it is used during the typer phase

    Creates a FreshNameCreator that reports an error if it is used during the typer phase

    Definition Classes
    CompilationUnits
  743. def weakLub(tps: List[Type]): Type
    Definition Classes
    GlbLubs
  744. def weakTypeOf[T](implicit attag: WeakTypeTag[T]): Type
    Definition Classes
    TypeTags
  745. def weakTypeTag[T](implicit attag: WeakTypeTag[T]): WeakTypeTag[T]
    Definition Classes
    TypeTags
  746. def withInfoLevel[T](infolevel: ast.NodePrinters.InfoLevel.Value)(op: => T): T
    Definition Classes
    Global
  747. final def withPropagateCyclicReferences[T](t: => T): T
    Definition Classes
    Global
    Annotations
    @inline()
  748. def withTypesExplained[A](op: => A): A
    Definition Classes
    Types
  749. implicit def workEvent: Pickler[WorkEvent]
    Definition Classes
    Picklers
  750. def wrappingIntoTerm(tree0: Tree)(op: (Tree) => Tree): Tree
    Definition Classes
    Trees
  751. def wrappingPos(trees: List[Tree]): Position
    Definition Classes
    Positions → Positions
  752. def wrappingPos(default: Position, trees: List[Tree], focus: Boolean): Position
    Definition Classes
    Positions
  753. def wrappingPos(default: Position, trees: List[Tree]): Position
    Definition Classes
    Positions → Positions
  754. def xprintTree(treePrinter: InternalTreePrinter, tree: Tree): Unit
    Definition Classes
    Printers → Printers
  755. object Alternative extends reflect.internal.SymbolTable.AlternativeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  756. object Annotated extends reflect.internal.SymbolTable.AnnotatedExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  757. object AnnotatedType extends reflect.internal.SymbolTable.AnnotatedTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  758. object AnnotationInfo
    Definition Classes
    AnnotationInfos
  759. object AppliedTypeTree extends reflect.internal.SymbolTable.AppliedTypeTreeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  760. object Apply extends reflect.internal.SymbolTable.ApplyExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  761. object ApproximateDependentMap extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  762. object Assign extends reflect.internal.SymbolTable.AssignExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  763. case object AutoApplicationAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  764. case object BackquotedIdentifierAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  765. object Bind extends reflect.internal.SymbolTable.BindExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  766. object Block extends reflect.internal.SymbolTable.BlockExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  767. object BooleanFlag extends java.io.Serializable
    Definition Classes
    Printers
  768. object BoundedWildcardType extends reflect.internal.SymbolTable.BoundedWildcardTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  769. object CaseDef extends reflect.internal.SymbolTable.CaseDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  770. object ClassDef extends reflect.internal.SymbolTable.ClassDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  771. object ClassInfoType extends reflect.internal.SymbolTable.ClassInfoTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  772. object CompletionResult
  773. object CompoundType
    Definition Classes
    Types
  774. object CompoundTypeTree extends reflect.internal.SymbolTable.CompoundTypeTreeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  775. object ConsoleWriter extends Writer
    Definition Classes
    Printers
  776. object Constant extends reflect.internal.SymbolTable.ConstantExtractor with java.io.Serializable
    Definition Classes
    Constants → Constants
  777. object ConstantType extends reflect.internal.SymbolTable.ConstantTypeExtractor
    Definition Classes
    Types → Types
  778. case object ConstructorNeedsFence extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  779. object DefDef extends reflect.internal.SymbolTable.DefDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  780. case object DelambdafyTarget extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  781. case object DottyEnumSingleton extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  782. object EmptyScope extends reflect.internal.SymbolTable.Scope
    Definition Classes
    Scopes
  783. case object EmptyTree extends reflect.internal.SymbolTable.Tree with reflect.internal.SymbolTable.TermTree with reflect.internal.SymbolTable.CannotHaveAttrs with Product with Serializable
    Definition Classes
    Trees → Trees
  784. object ErasedValueType extends java.io.Serializable
    Definition Classes
    Types
  785. case object ErrorType extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types
  786. object ExistentialType extends reflect.internal.SymbolTable.ExistentialTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  787. object ExistentialTypeTree extends reflect.internal.SymbolTable.ExistentialTypeTreeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  788. object Expr extends java.io.Serializable
    Definition Classes
    Exprs
  789. case object FieldTypeInferred extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  790. object Flag extends reflect.internal.SymbolTable.FlagValues
    Definition Classes
    FlagSets → FlagSets
  791. object FoldableConstantType extends java.io.Serializable
    Definition Classes
    Types
  792. object Function extends reflect.internal.SymbolTable.FunctionExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  793. object GenPolyType
    Definition Classes
    Types
  794. object Ident extends reflect.internal.SymbolTable.IdentExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  795. object If extends reflect.internal.SymbolTable.IfExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  796. object Import extends reflect.internal.SymbolTable.ImportExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  797. object ImportSelector extends reflect.internal.SymbolTable.ImportSelectorExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  798. case object InfixAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  799. case object InlineCallsiteAttachment extends reflect.internal.SymbolTable.InlineAnnotatedAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  800. case object InterpolatedString extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  801. object Kind
    Definition Classes
    Kinds
  802. object LabelDef extends reflect.internal.SymbolTable.LabelDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  803. object Liftable extends reflect.api.Universe.StandardLiftableInstances
    Definition Classes
    Liftables
  804. object Literal extends reflect.internal.SymbolTable.LiteralExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  805. object LiteralType extends java.io.Serializable
    Definition Classes
    Types
  806. case object LookupNotFound extends reflect.internal.SymbolTable.NameLookup with Product with Serializable
    Definition Classes
    Scopes
  807. object Match extends reflect.internal.SymbolTable.MatchExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  808. object MethodType extends reflect.internal.SymbolTable.MethodTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  809. object MethodValue
    Definition Classes
    Trees
  810. object Modifiers extends reflect.internal.SymbolTable.ModifiersExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  811. object ModuleDef extends reflect.internal.SymbolTable.ModuleDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  812. case object MultiargInfixAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  813. object NamedArg extends reflect.internal.SymbolTable.NamedArgExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  814. object New extends reflect.internal.SymbolTable.NewExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  815. case object NoInlineCallsiteAttachment extends reflect.internal.SymbolTable.InlineAnnotatedAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  816. case object NoPrefix extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types → Types
  817. case object NoType extends reflect.internal.SymbolTable.Type with Product with Serializable
    Definition Classes
    Types → Types
  818. case object NoWarnAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  819. object NullaryMethodType extends reflect.internal.SymbolTable.NullaryMethodTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  820. case object NullaryOverrideAdapted extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  821. case object OuterArgCanBeElided extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  822. object PackageDef extends reflect.internal.SymbolTable.PackageDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  823. case object PatVarDefAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  824. object PolyType extends reflect.internal.SymbolTable.PolyTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  825. case object PostfixAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  826. object RefTree extends reflect.internal.SymbolTable.RefTreeExtractor
    Definition Classes
    Trees → Trees
  827. object ReferenceToBoxed extends reflect.internal.SymbolTable.ReferenceToBoxedExtractor with java.io.Serializable
    Definition Classes
    Trees
  828. object RefinedType extends reflect.internal.SymbolTable.RefinedTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  829. object Return extends reflect.internal.SymbolTable.ReturnExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  830. case object RootSelection extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  831. object Scope
    Definition Classes
    Scopes
  832. object Select extends reflect.internal.SymbolTable.SelectExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  833. object SelectFromTypeTree extends reflect.internal.SymbolTable.SelectFromTypeTreeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  834. object SingleType extends reflect.internal.SymbolTable.SingleTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  835. object SingletonTypeTree extends reflect.internal.SymbolTable.SingletonTypeTreeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  836. object Star extends reflect.internal.SymbolTable.StarExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  837. object StaticallyAnnotatedType
    Definition Classes
    Types
  838. object SubstSymMap
    Definition Classes
    TypeMaps
  839. object Super extends reflect.internal.SymbolTable.SuperExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  840. object SuperType extends reflect.internal.SymbolTable.SuperTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  841. case object SyntheticUnitAttachment extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  842. object Template extends reflect.internal.SymbolTable.TemplateExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  843. object TermName extends reflect.internal.Names.TermNameExtractor
    Definition Classes
    Names → Names
  844. object This extends reflect.internal.SymbolTable.ThisExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  845. object ThisType extends reflect.internal.SymbolTable.ThisTypeExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  846. object Throw extends reflect.internal.SymbolTable.ThrowExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  847. object ThrownException
    Definition Classes
    AnnotationInfos
  848. object Try extends reflect.internal.SymbolTable.TryExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  849. object TypeApply extends reflect.internal.SymbolTable.TypeApplyExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  850. object TypeBounds extends reflect.internal.SymbolTable.TypeBoundsExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  851. object TypeBoundsTree extends reflect.internal.SymbolTable.TypeBoundsTreeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  852. object TypeConKind
    Definition Classes
    Kinds
  853. object TypeDef extends reflect.internal.SymbolTable.TypeDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  854. object TypeName extends reflect.internal.Names.TypeNameExtractor
    Definition Classes
    Names → Names
  855. object TypeRef extends reflect.internal.SymbolTable.TypeRefExtractor with java.io.Serializable
    Definition Classes
    Types → Types
  856. object TypeTag extends java.io.Serializable
    Definition Classes
    TypeTags
  857. object TypeTree extends reflect.internal.SymbolTable.TypeTreeExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  858. object TypeVar extends java.io.Serializable
    Definition Classes
    Types
  859. object Typed extends reflect.internal.SymbolTable.TypedExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  860. case object TypedExpectingUnitAttachment extends Product with Serializable
    Definition Classes
    StdAttachments
  861. object UnApply extends reflect.internal.SymbolTable.UnApplyExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  862. object UnmappableAnnotation extends reflect.internal.SymbolTable.CompleteAnnotationInfo
    Definition Classes
    AnnotationInfos
  863. case object UseInvokeSpecial extends reflect.internal.SymbolTable.PlainAttachment with Product with Serializable
    Definition Classes
    StdAttachments
  864. object ValDef extends reflect.internal.SymbolTable.ValDefExtractor with java.io.Serializable
    Definition Classes
    Trees → Trees
  865. object ValOrDefDef
    Definition Classes
    Trees
  866. object WeakTypeTag extends java.io.Serializable
    Definition Classes
    TypeTags
  867. case object WildcardType extends reflect.internal.SymbolTable.ProtoType with Product with Serializable
    Definition Classes
    Types → Types
  868. object abstractTypesToBounds extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  869. object adaptToNewRunMap extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  870. object definitions extends reflect.internal.SymbolTable.DefinitionsClass
    Definition Classes
    Definitions → StandardDefinitions
  871. object dropIllegalStarTypes extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  872. object dropSingletonType extends reflect.internal.SymbolTable.TypeMap
    Definition Classes
    TypeMaps
  873. object duplicateAndResetPos extends reflect.internal.SymbolTable.Transformer
    Definition Classes
    Trees
  874. object inferKind
    Definition Classes
    Kinds
  875. object nme extends reflect.internal.SymbolTable.TermNames
    Definition Classes
    StdNames
  876. object noPrint extends (reflect.internal.SymbolTable.Tree) => Boolean
    Definition Classes
    TypeDebugging
  877. object noSelfType extends reflect.internal.SymbolTable.ValDef with reflect.internal.SymbolTable.CannotHaveAttrs
    Definition Classes
    Trees → Trees
  878. object pendingSuperCall extends reflect.internal.SymbolTable.Apply with reflect.internal.SymbolTable.CannotHaveAttrs
    Definition Classes
    Trees → Trees
  879. object perRunCaches
    Definition Classes
    SymbolTable
  880. object tpnme extends reflect.internal.SymbolTable.TypeNames
    Definition Classes
    StdNames
  881. object traceSymbols extends TraceSymbolActivity
    Definition Classes
    SymbolTable
  882. object typeDebug extends AnsiColor
    Definition Classes
    TypeDebugging
  883. object unwrapToClass extends reflect.internal.SymbolTable.ClassUnwrapper
    Definition Classes
    Types
  884. object unwrapToStableClass extends reflect.internal.SymbolTable.ClassUnwrapper
    Definition Classes
    Types
  885. object unwrapWrapperTypes extends reflect.internal.SymbolTable.TypeUnwrapper
    Definition Classes
    Types
  886. object wildcardExtrapolation extends reflect.internal.SymbolTable.VariancedTypeMap
    Definition Classes
    TypeMaps

Deprecated Value Members

  1. def askDocComment(sym: Symbol, site: Symbol, source: SourceFile, response: Response[(String, String, Position)]): Unit
    Definition Classes
    CompilerControl
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.2) Use method that accepts fragments

  2. def askType(source: SourceFile, forceReload: Boolean, response: Response[Tree]): Unit

    Sets sync var response to the fully attributed & typechecked tree contained in source.

    Sets sync var response to the fully attributed & typechecked tree contained in source.

    Definition Classes
    CompilerControl
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.1) Use askLoadedTyped instead to avoid race conditions in the typechecker

    Note

    Pre-condition: source needs to be loaded.

    ,

    Deprecated because of race conditions in the typechecker when the background compiler is interrupted while typing the same source.

    See also

    scala/bug#6578

  3. final def assert(assertion: Boolean): Unit
    Definition Classes
    SymbolTable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.5) consider supplying an explanatory message

  4. final def atPhase[T](ph: reflect.internal.Phase)(op: => T): T
    Definition Classes
    SymbolTable
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.10.0) use enteringPhase

  5. def chrs: Array[Char]
    Definition Classes
    Names
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.9) Don't access name table contents directly.

  6. def chrs_=(cs: Array[Char]): Unit
    Definition Classes
    Names
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.9) Don't access name table contents directly.

  7. lazy val compat: Compat
    Definition Classes
    Internals → Internals
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) compatibility with Scala 2.10 EOL

  8. lazy val emptyValDef: noSelfType.type
    Definition Classes
    Trees → Trees
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) use noSelfType instead

  9. def error(msg: String): Unit
    Definition Classes
    Reporting
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.4) use globalError instead

  10. def isRaw(sym: Symbol, args: List[Type]): Boolean
    Definition Classes
    Types
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.1) use isRawType

  11. def logThrowable(t: Throwable): Unit
    Definition Classes
    Global
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.1) Renamed to reportThrowable

  12. final def newAsSeenFromMap(pre: Type, clazz: Symbol): AsSeenFromMap
    Definition Classes
    TypeMaps
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.0) use new AsSeenFromMap instead

  13. def polyType(params: List[Symbol], tpe: Type): Type
    Definition Classes
    Types
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) use genPolyType(...) instead

  14. final def require(requirement: Boolean): Unit
    Definition Classes
    SymbolTable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.12.5) consider supplying an explanatory message

  15. def stringToTermName(s: String): TermName
    Definition Classes
    Names
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) use TermName(s) instead

  16. def stringToTypeName(s: String): TypeName
    Definition Classes
    Names
    Annotations
    @deprecated
    Deprecated

    (Since version 2.11.0) use TypeName(s) instead

  17. def warning(pos: Position, msg: String): Unit
    Definition Classes
    Reporting
    Annotations
    @deprecatedOverriding() @deprecated
    Deprecated

    (Since version 2.13.4) Use runReporting.warning instead

  18. def warning(msg: String): Unit
    Definition Classes
    Reporting
    Annotations
    @deprecatedOverriding() @deprecated
    Deprecated

    (Since version 2.13.4) Use runReporting.warning instead