scala.reflect.runtime

SymbolTable

trait SymbolTable extends SymbolTable with JavaMirrors with SymbolLoaders with SynchronizedOps

This symbol table trait fills in the definitions so that class information is obtained by refection. It can be used either from a reflexive universe (class scala.reflect.runtime.JavaUniverse), or else from a runtime compiler that uses reflection to get a class information (class scala.tools.reflect.ReflectGlobal)

Source
SymbolTable.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SymbolTable
  2. SynchronizedOps
  3. SynchronizedTypes
  4. SynchronizedSymbols
  5. SymbolLoaders
  6. JavaMirrors
  7. JavaUniverse
  8. TagInterop
  9. SymbolTable
  10. BuildUtils
  11. StdCreators
  12. StdAttachments
  13. CapturedVariables
  14. Required
  15. Importers
  16. TypeDebugging
  17. Positions
  18. Printers
  19. Trees
  20. AnnotationCheckers
  21. AnnotationInfos
  22. StdNames
  23. Transforms
  24. InfoTransformers
  25. BaseTypeSeqs
  26. Constants
  27. Definitions
  28. Mirrors
  29. Scopes
  30. FlagSets
  31. ExistentialsAndSkolems
  32. Kinds
  33. Types
  34. Symbols
  35. Names
  36. Collections
  37. Universe
  38. Universe
  39. AnnotationInfos
  40. Exprs
  41. Importers
  42. StandardNames
  43. StandardDefinitions
  44. Mirrors
  45. Positions
  46. Constants
  47. Printers
  48. Trees
  49. Names
  50. FlagSets
  51. Types
  52. Symbols
  53. Universe
  54. Mirrors
  55. BuildUtils
  56. StandardNames
  57. StandardDefinitions
  58. StandardTypes
  59. TagInterop
  60. TypeTags
  61. Positions
  62. AnnotationInfos
  63. Constants
  64. Trees
  65. Names
  66. Scopes
  67. FlagSets
  68. Types
  69. Symbols
  70. AnyRef
  71. Any
Implicitly
  1. by any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait AbsTypeTag[T] extends Equals with Serializable

    If an implicit value of type u.

  2. abstract type AbstractFileType >: Null <: AbstractFileApi

    Definition Classes
    Required
  3. trait AbstractTypeRef extends TypeRef with NonClassTypeRef

    Definition Classes
    Types
  4. class AbstractTypeSymbol extends TypeSymbol

    Definition Classes
    Symbols
  5. trait AliasTypeRef extends TypeRef with NonClassTypeRef

    Definition Classes
    Types
  6. class AliasTypeSymbol extends TypeSymbol

    Definition Classes
    Symbols
  7. case class Alternative(trees: List[Tree]) extends Tree with TermTree with AlternativeApi with Product with Serializable

    Alternatives of patterns, eliminated by explicitouter, except for occurrences in encoded Switch stmt (=remaining Match(CaseDef(.

  8. trait AlternativeApi extends TreeBase with TermTreeApi

    The API that all alternatives support

  9. abstract class AlternativeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Alternative(trees).

  10. trait Annotatable[Self] extends AnyRef

    Definition Classes
    AnnotationInfos
  11. case class Annotated(annot: Tree, arg: Tree) extends Tree with AnnotatedApi with Product with Serializable

    A tree that has an annotation attached to it.

  12. trait AnnotatedApi extends TreeBase with TreeApi

    The API that all annotateds support

  13. abstract class AnnotatedExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Annotated(annot, arg).

  14. case class AnnotatedType(annotations: List[AnnotationInfo], underlying: Type, selfsym: Symbol) extends Type with RewrappingTypeProxy with AnnotatedTypeApi with Product with Serializable

    A type carrying some annotations.

  15. trait AnnotatedTypeApi extends TypeApi

    The API that all annotated types support

  16. abstract class AnnotatedTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax AnnotatedType(annotations, underlying, selfsym).

  17. abstract class AnnotationChecker extends AnyRef

    An additional checker for annotations on types.

  18. trait AnnotationFilter extends TypeMap

    Definition Classes
    Types
  19. sealed abstract class AnnotationInfo extends AnnotationInfoApi

    Typed information about an annotation.

  20. trait AnnotationInfoApi extends AnyRef

    Definition Classes
    AnnotationInfos
  21. abstract class AnnotationInfoExtractor extends AnyRef

    Definition Classes
    AnnotationInfos
  22. case class AntiPolyType(pre: Type, targs: List[Type]) extends Type with Product with Serializable

    A class remembering a type instantiation for some a set of overloaded polymorphic symbols.

  23. case class AppliedTypeTree(tpt: Tree, args: List[Tree]) extends Tree with TypTree with AppliedTypeTreeApi with Product with Serializable

    Applied type <tpt> [ <args> ], eliminated by RefCheck

  24. trait AppliedTypeTreeApi extends TreeBase with TypTreeApi

    The API that all applied type trees support

  25. abstract class AppliedTypeTreeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax AppliedTypeTree(tpt, args).

  26. class AppliedTypeVar extends TypeVar

    Precondition: zipped params/args nonEmpty.

  27. case class Apply(fun: Tree, args: List[Tree]) extends GenericApply with ApplyApi with Product with Serializable

    Value application

  28. trait ApplyApi extends TreeBase with GenericApplyApi

    The API that all applies support

  29. case class ApplyDynamic(qual: Tree, args: List[Tree]) extends Tree with TermTree with SymTree with ApplyDynamicApi with Product with Serializable

    Dynamic value application.

  30. trait ApplyDynamicApi extends TreeBase with TermTreeApi with SymTreeApi

    The API that all apply dynamics support

  31. abstract class ApplyDynamicExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ApplyDynamic(qual, args).

  32. abstract class ApplyExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Apply(fun, args).

  33. class ApplyImplicitView extends Apply

    Definition Classes
    Trees
  34. class ApplyToImplicitArgs extends Apply

    Definition Classes
    Trees
  35. class ArgsTypeRef extends TypeRef with UniqueType

    Definition Classes
    Types
  36. case class ArrayAnnotArg(args: Array[ClassfileAnnotArg]) extends ClassfileAnnotArg with ArrayAnnotArgApi with Product with Serializable

    Represents an array of classfile annotation arguments

  37. trait ArrayAnnotArgApi extends AnyRef

    Definition Classes
    AnnotationInfos
  38. abstract class ArrayAnnotArgExtractor extends AnyRef

    Definition Classes
    AnnotationInfos
  39. case class ArrayValue(elemtpt: Tree, elems: List[Tree]) extends Tree with TermTree with ArrayValueApi with Product with Serializable

    Array of expressions, needs to be translated in backend.

  40. trait ArrayValueApi extends TreeBase with TermTreeApi

    The API that all array values support

  41. abstract class ArrayValueExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ArrayValue(elemtpt, elems).

  42. class AsSeenFromMap extends TypeMap with KeepOnlyTypeConstraints

    A map to compute the asSeenFrom method

  43. case class Assign(lhs: Tree, rhs: Tree) extends Tree with TermTree with AssignApi with Product with Serializable

    Assignment

  44. trait AssignApi extends TreeBase with TermTreeApi

    The API that all assigns support

  45. abstract class AssignExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Assign(lhs, rhs).

  46. case class AssignOrNamedArg(lhs: Tree, rhs: Tree) extends Tree with TermTree with AssignOrNamedArgApi with Product with Serializable

    Either an assignment or a named argument.

  47. trait AssignOrNamedArgApi extends TreeBase with TermTreeApi

    The API that all assigns support

  48. abstract class AssignOrNamedArgExtractor extends AnyRef

    An extractor class to create and pattern match with syntax AssignOrNamedArg(lhs, rhs).

  49. class BaseTypeSeq extends AnyRef

    Note: constructor is protected to force everyone to use the factory method newBaseTypeSeq instead.

  50. case class Bind(name: Name, body: Tree) extends DefTree with BindApi with Product with Serializable

    Bind of a variable to a rhs pattern, eliminated by explicitouter Eliminated by patmat/explicitouter.

  51. trait BindApi extends TreeBase with DefTreeApi

    The API that all binds support

  52. abstract class BindExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Bind(name, body).

  53. case class Block(stats: List[Tree], expr: Tree) extends Tree with TermTree with BlockApi with Product with Serializable

    Block of expressions (semicolon separated expressions)

  54. trait BlockApi extends TreeBase with TermTreeApi

    The API that all blocks support

  55. abstract class BlockExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Block(stats, expr).

  56. case class BooleanFlag(value: Option[Boolean]) extends Product with Serializable

    Definition Classes
    Printers
  57. case class BoundedWildcardType(bounds: TypeBounds) extends Type with BoundedWildcardTypeApi with Product with Serializable

    BoundedWildcardTypes, used only during type inference, are created in two places that I can find:

  58. trait BoundedWildcardTypeApi extends TypeApi

    The API that all this types support

  59. abstract class BoundedWildcardTypeExtractor extends AnyRef

    Definition Classes
    Types
  60. abstract class BuildBase extends AnyRef

    Definition Classes
    BuildUtils
  61. class BuildImpl extends BuildBase

    Definition Classes
    BuildUtils
  62. case class CaseDef(pat: Tree, guard: Tree, body: Tree) extends Tree with CaseDefApi with Product with Serializable

    Case clause in a pattern match, eliminated during explicitouter (except for occurrences in switch statements).

  63. trait CaseDefApi extends TreeBase with TreeApi

    The API that all case defs support

  64. abstract class CaseDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax CaseDef(pat, guard, body).

  65. class ChangeOwnerTraverser extends Traverser

    Definition Classes
    Trees
  66. case class ClassDef(mods: Modifiers, name: TypeName, tparams: List[TypeDef], impl: Template) extends ImplDef with ClassDefApi with Product with Serializable

    A class definition.

  67. trait ClassDefApi extends TreeBase with ImplDefApi

    The API that all class defs support

  68. abstract class ClassDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ClassDef(mods, name, tparams, impl).

  69. case class ClassInfoType(parents: List[Type], decls: Scope, typeSymbol: Symbol) extends CompoundType with ClassInfoTypeApi with Product with Serializable

    A class representing a class info

  70. trait ClassInfoTypeApi extends TypeApi

    The API that all class info types support

  71. abstract class ClassInfoTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ClassInfo(parents, decls, clazz) Here, parents is the list of parent types of the class, decls is the scope containing all declarations in the class, and clazz is the symbol of the class itself.

  72. trait ClassMirror extends TemplateMirror

    A mirror that reflects the instance parts of a runtime class

  73. class ClassSymbol extends TypeSymbol with ClassSymbolApi

    A class for class symbols

  74. trait ClassSymbolApi extends TypeSymbolApi with ClassSymbolBase

    The API of class symbols

  75. trait ClassSymbolBase extends TypeSymbolBase

    The base API that all class symbols support

  76. trait ClassTypeRef extends TypeRef

    Definition Classes
    Types
  77. class ClassUnwrapper extends TypeUnwrapper

    Definition Classes
    Types
  78. abstract class ClassfileAnnotArg extends Product

    Arguments to classfile annotations (which are written to bytecode as java annotations) are either:

  79. class CollectTreeTraverser[T] extends Traverser

    Definition Classes
    Trees
  80. class CollectTypeCollector[T] extends TypeCollector[List[T]]

    A map to implement the collect method.

  81. abstract class CommonNames extends NamesApi

    Definition Classes
    StdNames
  82. class CommonOwnerMap extends TypeTraverserWithResult[Symbol]

    Attributes
    protected
    Definition Classes
    Types
  83. class CompleteAnnotationInfo extends AnnotationInfo

    Definition Classes
    AnnotationInfos
  84. abstract class CompoundType extends Type

    A common base class for intersection types and class types

  85. case class CompoundTypeTree(templ: Template) extends Tree with TypTree with CompoundTypeTreeApi with Product with Serializable

    Intersection type <parent1> with .

  86. trait CompoundTypeTreeApi extends TreeBase with TypTreeApi

    The API that all compound type trees support

  87. abstract class CompoundTypeTreeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax CompoundTypeTree(templ).

  88. case class CompoundTypeTreeOriginalAttachment(parents: List[Tree], stats: List[Tree]) extends Product with Serializable

    Definition Classes
    StdAttachments
  89. case class Constant(value: Any) extends ConstantApi with Product with Serializable

    Definition Classes
    ConstantsConstantsConstants
  90. abstract class ConstantApi extends AnyRef

    Definition Classes
    Constants
  91. abstract class ConstantExtractor extends AnyRef

    Definition Classes
    Constants
  92. abstract case class ConstantType(value: Constant) extends SingletonType with ConstantTypeApi with Product with Serializable

    A class representing a constant type.

  93. trait ConstantTypeApi extends TypeApi

    The API that all constant types support

  94. abstract class ConstantTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ConstantType(constant) Here, constant is the constant value represented by the type.

  95. class ContainsCollector extends TypeCollector[Boolean]

    A map to implement the contains method.

  96. class ContainsTypeCollector extends TypeCollector[Boolean]

    A map to implement the contains method.

  97. case class CyclicReference(sym: Symbol, info: Type) extends TypeError with Product with Serializable

    An exception for cyclic references of symbol definitions

  98. case class DeBruijnBinder(pnames: List[Name], ptypes: List[Type], restpe: Type) extends Type with Product with Serializable

    A binder defining data associated with De Bruijn indices.

  99. case class DeBruijnIndex(level: Int, idx: Int, args: List[Type]) extends Type with Product with Serializable

    A De Bruijn index referring to a previous type argument.

  100. case class DefDef(mods: Modifiers, name: Name, tparams: List[TypeDef], vparamss: List[List[ValDef]], tpt: Tree, rhs: Tree) extends ValOrDefDef with DefDefApi with Product with Serializable

    A method or macro definition.

  101. trait DefDefApi extends TreeBase with ValOrDefDefApi

    The API that all def defs support

  102. abstract class DefDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax DefDef(mods, name, tparams, vparamss, tpt, rhs).

  103. abstract class DefTree extends Tree with SymTree with NameTree with DefTreeApi

    A tree which defines a symbol-carrying entity.

  104. trait DefTreeApi extends TreeBase with SymTreeApi with NameTreeApi

    The API that all def trees support

  105. class DefaultPosAssigner extends Traverser with PosAssigner

    Attributes
    protected
    Definition Classes
    Positions
  106. trait DefinitionsApi extends DefinitionsBase

    Definition Classes
    StandardDefinitions
  107. trait DefinitionsBase extends AnyRef

    Definition Classes
    StandardDefinitions
  108. abstract class DefinitionsClass extends DefinitionsApi with ValueClassDefinitions

    Definition Classes
    Definitions
  109. abstract case class ErasedValueType(sym: Symbol) extends Type with Product with Serializable

    Definition Classes
    Types
  110. class ErrorScope extends Scope

    The error scope.

  111. class ExistentialExtrapolation extends TypeMap with VariantTypeMap

    Used by existentialAbstraction.

  112. case class ExistentialType(quantified: List[Symbol], underlying: Type) extends Type with RewrappingTypeProxy with ExistentialTypeApi with Product with Serializable

    .

  113. trait ExistentialTypeApi extends TypeApi

    The API that all existential types support

  114. abstract class ExistentialTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ExistentialType(quantified, underlying).

  115. case class ExistentialTypeTree(tpt: Tree, whereClauses: List[Tree]) extends Tree with TypTree with ExistentialTypeTreeApi with Product with Serializable

    Document me!

  116. trait ExistentialTypeTreeApi extends TreeBase with TypTreeApi

    The API that all existential type trees support

  117. abstract class ExistentialTypeTreeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ExistentialTypeTree(tpt, whereClauses).

  118. trait Expr[+T] extends Equals with Serializable

    An expression tree tagged with its type

  119. trait FieldMirror extends AnyRef

    A mirror that reflects a field

  120. class FilterTreeTraverser extends Traverser

    Definition Classes
    Trees
  121. class FilterTypeCollector extends TypeCollector[List[Type]]

    A map to implement the filter method.

  122. class FindTreeTraverser extends Traverser

    Definition Classes
    Trees
  123. class FindTypeCollector extends TypeCollector[Option[Type]]

    A map to implement the filter method.

  124. case class FixedMirrorTreeCreator(mirror: MirrorOf[StdCreators.this.type], tree: Tree) extends TreeCreator with Product with Serializable

    Definition Classes
    StdCreators
  125. case class FixedMirrorTypeCreator(mirror: MirrorOf[StdCreators.this.type], tpe: Type) extends TypeCreator with Product with Serializable

    Definition Classes
    StdCreators
  126. trait FlagOps extends Any

    Definition Classes
    FlagSets
  127. type FlagSet = Long

    Definition Classes
    FlagSetsFlagSets
  128. trait FlagValues extends FlagValuesApi

    Definition Classes
    FlagSetsFlagSets
  129. trait FlagValuesApi extends AnyRef

    Definition Classes
    FlagSets
  130. class ForEachTypeTraverser extends TypeTraverser

    Definition Classes
    Types
  131. class ForeachPartialTreeTraverser extends Traverser

    Definition Classes
    Trees
  132. class ForeachTreeTraverser extends Traverser

    Definition Classes
    Trees
  133. trait FreeSymbol extends Symbol

    Definition Classes
    Symbols
  134. class FreeTermSymbol extends TermSymbol with FreeSymbol with FreeTermSymbolApi

    The abstract type of free terms introduced by reification

  135. trait FreeTermSymbolApi extends TermSymbolApi with FreeTermSymbolBase

    The API of free term symbols

  136. trait FreeTermSymbolBase extends TermSymbolBase

    The base API that all free term symbols support

  137. class FreeTypeSymbol extends TypeSkolem with FreeSymbol with FreeTypeSymbolApi

    The abstract type of free types introduced by reification

  138. trait FreeTypeSymbolApi extends TypeSymbolApi with FreeTypeSymbolBase

    The API of free term symbols

  139. trait FreeTypeSymbolBase extends TypeSymbolBase

    The base API that all free type symbols support

  140. case class Function(vparams: List[ValDef], body: Tree) extends Tree with TermTree with SymTree with FunctionApi with Product with Serializable

    Anonymous function, eliminated by lambdalift

  141. trait FunctionApi extends TreeBase with TermTreeApi with SymTreeApi

    The API that all functions support

  142. abstract class FunctionExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Function(vparams, body).

  143. abstract class GenericApply extends Tree with TermTree with GenericApplyApi

    Common base class for Apply and TypeApply.

  144. trait GenericApplyApi extends TreeBase with TermTreeApi

    The API that all applies support

  145. class HKTypeVar extends TypeVar

    Precondition: params.

  146. trait HasFlagsApi extends AnyRef

    Definition Classes
    Symbols
  147. case class Ident(name: Name) extends Tree with RefTree with IdentContextApi with Product with Serializable

    Identifier <name>

  148. trait IdentApi extends TreeBase with RefTreeApi

    The API that all idents support

  149. trait IdentContextApi extends TreeBase with IdentApi

    The extended API of idents that's supported in macro context universes

  150. abstract class IdentExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Ident(qual, name).

  151. case class If(cond: Tree, thenp: Tree, elsep: Tree) extends Tree with TermTree with IfApi with Product with Serializable

    Conditional expression

  152. trait IfApi extends TreeBase with TermTreeApi

    The API that all ifs support

  153. abstract class IfExtractor extends AnyRef

    An extractor class to create and pattern match with syntax If(cond, thenp, elsep).

  154. trait ImplClassSymbol extends ClassSymbol

    Definition Classes
    Symbols
  155. abstract class ImplDef extends MemberDef with ImplDefApi

    A common base class for class and object definitions.

  156. trait ImplDefApi extends TreeBase with MemberDefApi

    The API that all impl defs support

  157. case class Import(expr: Tree, selectors: List[ImportSelector]) extends Tree with SymTree with ImportApi with Product with Serializable

    Import clause

  158. trait ImportApi extends TreeBase with SymTreeApi

    The API that all imports support

  159. abstract class ImportExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Import(expr, selectors).

  160. case class ImportSelector(name: Name, namePos: Int, rename: Name, renamePos: Int) extends ImportSelectorApi with Product with Serializable

    Import selector

  161. trait ImportSelectorApi extends AnyRef

    The API that all import selectors support

  162. abstract class ImportSelectorExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ImportSelector(name:, namePos, rename, renamePos).

  163. trait Importer extends AnyRef

    Definition Classes
    Importers
  164. abstract class InfoTransformer extends AnyRef

    Definition Classes
    InfoTransformers
  165. trait InstanceMirror extends AnyRef

    A mirror that reflects a runtime value

  166. class InstantiateDependentMap extends TypeMap with KeepOnlyTypeConstraints

    Definition Classes
    Types
  167. case class InvalidCompanions(sym1: Symbol, sym2: Symbol) extends Throwable with Product with Serializable

    Definition Classes
    Symbols
  168. class JavaKeywords extends AnyRef

    Definition Classes
    StdNames
  169. class JavaMethodType extends MethodType

    Definition Classes
    Types
  170. class JavaMirror extends Roots with JavaMirror

    The API of a mirror for a reflective universe

  171. trait KeepOnlyTypeConstraints extends TypeMap with AnnotationFilter

    Definition Classes
    Types
  172. abstract class Keywords extends CommonNames

    This should be the first trait in the linearization.

  173. case class KindErrors(arity: List[(Symbol, Symbol)], variance: List[(Symbol, Symbol)], strictness: List[(Symbol, Symbol)]) extends Product with Serializable

    Definition Classes
    Kinds
  174. case class LabelDef(name: TermName, params: List[Ident], rhs: Tree) extends DefTree with TermTree with LabelDefApi with Product with Serializable

    A labelled expression.

  175. trait LabelDefApi extends TreeBase with DefTreeApi with TermTreeApi

    The API that all label defs support

  176. abstract class LabelDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax LabelDef(name, params, rhs).

  177. final class LazyAnnotationInfo extends AnnotationInfo

    Symbol annotations parsed in Namer (typeCompleter of definitions) have to be lazy (#1782)

  178. class LazyPackageType extends LazyType

    The type completer for packages.

  179. abstract class LazyPolyType extends LazyType

    Definition Classes
    Types
  180. class LazyTreeCopier extends TreeCopierOps

    Definition Classes
    Trees
  181. abstract class LazyType extends Type

    A class representing an as-yet unevaluated type.

  182. case class Literal(value: Constant) extends Tree with TermTree with LiteralApi with Product with Serializable

    Literal

  183. case class LiteralAnnotArg(const: Constant) extends ClassfileAnnotArg with LiteralAnnotArgApi with Product with Serializable

    Represents a compile-time Constant (Boolean, Byte, Short, Char, Int, Long, Float, Double, String, java.lang.Class or an instance of a Java enumeration value).

  184. trait LiteralAnnotArgApi extends AnyRef

    Definition Classes
    AnnotationInfos
  185. abstract class LiteralAnnotArgExtractor extends AnyRef

    Definition Classes
    AnnotationInfos
  186. trait LiteralApi extends TreeBase with TermTreeApi

    The API that all literals support

  187. abstract class LiteralExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Literal(value).

  188. case class MacroExpansionAttachment(original: Tree) extends Product with Serializable

    Definition Classes
    StdAttachments
  189. class MalformedType extends TypeError

    A throwable signalling a malformed type

  190. class MappedBaseTypeSeq extends BaseTypeSeq

    Definition Classes
    BaseTypeSeqs
  191. case class Match(selector: Tree, cases: List[CaseDef]) extends Tree with TermTree with MatchApi with Product with Serializable

    - Pattern matching expression (before explicitouter)

  192. trait MatchApi extends TreeBase with TermTreeApi

    The API that all matches support

  193. abstract class MatchExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Match(selector, cases).

  194. abstract class MemberDef extends DefTree with MemberDefApi

    Common base class for all member definitions: types, classes, objects, packages, vals and vars, defs.

  195. trait MemberDefApi extends TreeBase with DefTreeApi

    The API that all member defs support

  196. trait MethodMirror extends AnyRef

    A mirror that reflects a method handle

  197. class MethodSymbol extends TermSymbol with MethodSymbolApi

    A class for method symbols

  198. type MethodSymbolApi = MethodSymbolBase

    The API of method symbols

    The API of method symbols

    Definition Classes
    Symbols
  199. trait MethodSymbolBase extends TermSymbolBase

    The base API that all method symbols support

  200. case class MethodType(params: List[Symbol], resultType: Type) extends Type with MethodTypeApi with Product with Serializable

    A class representing a method type with parameters.

  201. trait MethodTypeApi extends TypeApi

    The API that all method types support

  202. abstract class MethodTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax MethodType(params, respte) Here, params is a potentially empty list of parameter symbols of the method, and restpe is the result type of the method.

  203. type Mirror = JavaMirror

    .

    ..

    Definition Classes
    JavaMirrorsJavaUniverseMirrorsMirrors
  204. class MissingAliasControl extends Throwable with ControlThrowable

    Definition Classes
    Types
  205. class MissingTypeControl extends Throwable with ControlThrowable

    Definition Classes
    Types
  206. case class Modifiers(flags: Long, privateWithin: Name, annotations: List[Tree]) extends ModifiersApi with HasFlags with Product with Serializable

  207. abstract class ModifiersApi extends ModifiersBase with HasFlagsApi

    Definition Classes
    Trees
  208. abstract class ModifiersBase extends AnyRef

    .

  209. abstract class ModifiersCreator extends AnyRef

    Definition Classes
    Trees
  210. class ModuleClassSymbol extends ClassSymbol

    A class for module class symbols Note: Not all module classes are of this type; when unpickled, we get plain class symbols!

  211. case class ModuleDef(mods: Modifiers, name: TermName, impl: Template) extends ImplDef with ModuleDefApi with Product with Serializable

    An object definition, e.

  212. trait ModuleDefApi extends TreeBase with ImplDefApi

    The API that all module defs support

  213. abstract class ModuleDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ModuleDef(mods, name, impl).

  214. trait ModuleMirror extends TemplateMirror

    A mirror that reflects a Scala object definition or the static parts of a runtime class

  215. class ModuleSymbol extends TermSymbol with ModuleSymbolApi

    A class for module symbols

  216. type ModuleSymbolApi = ModuleSymbolBase

    The API of module symbols

    The API of module symbols

    Definition Classes
    Symbols
  217. trait ModuleSymbolBase extends TermSymbolBase

    The base API that all module symbols support

  218. class ModuleTypeRef extends NoArgsTypeRef with ClassTypeRef

    Definition Classes
    Types
  219. sealed abstract class Name extends NameApi with (Int) ⇒ Char

    The name class.

  220. abstract class NameApi extends NameBase

    The extended API of names that's supported on reflect mirror via an implicit conversion in reflect.

  221. abstract class NameBase extends AnyRef

    The base API that all names support

  222. trait NameTree extends Tree with NameTreeApi

    A tree with a name - effectively, a DefTree or RefTree.

  223. trait NameTreeApi extends TreeBase with TreeApi

    The API that all name trees support

  224. case class NamedType(name: Name, tp: Type) extends Type with Product with Serializable

    A class representing types with a name.

  225. trait NamesApi extends NamesBase

    Definition Classes
    StandardNames
  226. trait NamesBase extends AnyRef

    Definition Classes
    StandardNames
  227. case class NestedAnnotArg(annInfo: AnnotationInfo) extends ClassfileAnnotArg with NestedAnnotArgApi with Product with Serializable

    Represents a nested classfile annotation

  228. trait NestedAnnotArgApi extends AnyRef

    Definition Classes
    AnnotationInfos
  229. abstract class NestedAnnotArgExtractor extends AnyRef

    Definition Classes
    AnnotationInfos
  230. case class New(tpt: Tree) extends Tree with TermTree with NewApi with Product with Serializable

    Object instantiation One should always use factory method below to build a user level new.

  231. trait NewApi extends TreeBase with TermTreeApi

    The API that all news support

  232. abstract class NewExtractor extends AnyRef

    An extractor class to create and pattern match with syntax New(tpt).

  233. class NoArgsTypeRef extends TypeRef with UniqueType

    Definition Classes
    Types
  234. class NoCommonType extends Throwable with ControlThrowable

    Definition Classes
    Types
  235. class NoSymbol extends Symbol

    An object representing a missing symbol

  236. trait NonClassTypeRef extends TypeRef

    Definition Classes
    Types
  237. case class NotNullType(underlying: Type) extends SubType with RewrappingTypeProxy with Product with Serializable

    Definition Classes
    Types
  238. case class NullaryMethodType(resultType: Type) extends Type with NullaryMethodTypeApi with Product with Serializable

    .

  239. trait NullaryMethodTypeApi extends TypeApi

    The API that all nullary method types support

  240. abstract class NullaryMethodTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax NullaryMethodType(resultType).

  241. case class OverloadedType(pre: Type, alternatives: List[Symbol]) extends Type with Product with Serializable

    A class containing the alternatives and type prefix of an overloaded symbol.

  242. class PackageClassInfoType extends ClassInfoType

    Definition Classes
    Types
  243. class PackageClassSymbol extends ModuleClassSymbol

    Definition Classes
    Symbols
  244. case class PackageDef(pid: RefTree, stats: List[Tree]) extends MemberDef with PackageDefApi with Product with Serializable

    A packaging, such as package pid { stats }

  245. trait PackageDefApi extends TreeBase with MemberDefApi

    The API that all package defs support

  246. abstract class PackageDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax PackageDef(pid, stats).

  247. class PackageObjectClassSymbol extends ModuleClassSymbol

    Definition Classes
    Symbols
  248. class PackageScope extends Scope with SynchronizedScope

    Definition Classes
    SymbolLoaders
  249. class PackageTypeRef extends ModuleTypeRef

    Definition Classes
    Types
  250. type Period = Int

    A period is an ordinal number for a phase in a run.

    A period is an ordinal number for a phase in a run. Phases in later runs have higher periods than phases in earlier runs. Later phases have higher periods than earlier phases in the same run.

    Definition Classes
    SymbolTable
  251. case class PolyType(typeParams: List[Symbol], resultType: Type) extends Type with PolyTypeApi with Product with Serializable

    A type function or the type of a polymorphic value (and thus of kind *).

  252. trait PolyTypeApi extends TypeApi

    The API that all polymorphic types support

  253. abstract class PolyTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax PolyType(typeParams, resultType).

  254. trait PosAssigner extends Traverser

    Definition Classes
    Positions
  255. type Position = Position

    .

    ..

    Definition Classes
    PositionsPositionsPositions
  256. class RawTreePrinter extends TreePrinter

    Definition Classes
    Printers
  257. case class RecoverableCyclicReference(sym: Symbol) extends TypeError with Product with Serializable

    An exception for cyclic references from which we can recover

  258. trait RefTree extends Tree with SymTree with NameTree with RefTreeApi

    A tree which references a symbol-carrying entity.

  259. trait RefTreeApi extends TreeBase with SymTreeApi with NameTreeApi

    The API that all ref trees support

  260. case class ReferenceToBoxed(ident: Ident) extends Tree with TermTree with ReferenceToBoxedApi with Product with Serializable

    Marks underlying reference to id as boxed.

  261. trait ReferenceToBoxedApi extends TreeBase with TermTreeApi

    The API that all references support

  262. abstract class ReferenceToBoxedExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ReferenceToBoxed(ident).

  263. case class RefinedType(parents: List[Type], decls: Scope) extends CompoundType with RefinedTypeApi with Product with Serializable

    A class representing intersection types with refinements of the form <parents_0> with ... with <parents_n> { decls } Cannot be created directly; one should always use refinedType for creation.

  264. final class RefinedType0 extends RefinedType

    Definition Classes
    Types
  265. trait RefinedTypeApi extends TypeApi

    The API that all refined types support

  266. abstract class RefinedTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax RefinedType(parents, decls) Here, parents is the list of parent types of the class, and decls is the scope containing all declarations in the class.

  267. class RefinementClassSymbol extends ClassSymbol

    Definition Classes
    Symbols
  268. class RefinementTypeRef extends NoArgsTypeRef with ClassTypeRef

    Definition Classes
    Types
  269. trait ReflectiveMirror extends MirrorOf[Mirrors.this.type]

    A mirror that reflects instances and static classes

  270. case class Return(expr: Tree) extends Tree with TermTree with SymTree with ReturnApi with Product with Serializable

    Return expression

  271. trait ReturnApi extends TreeBase with TermTreeApi

    The API that all returns support

  272. abstract class ReturnExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Return(expr).

  273. trait RewrappingTypeProxy extends Type with SimpleTypeProxy

    A proxy for a type (identified by field underlying) that forwards most operations to it.

  274. abstract class Roots extends RootsBase

    Definition Classes
    Mirrors
  275. abstract class RootsBase extends MirrorOf[Mirrors.this.type]

    Definition Classes
    Mirrors
  276. type RunId = Int

    An ordinal number for compiler runs.

    An ordinal number for compiler runs. First run has number 1.

    Definition Classes
    SymbolTable
  277. type RuntimeClass = Class[_]

    Definition Classes
    JavaMirrorsJavaUniverseMirrors
  278. trait RuntimeMirror extends MirrorOf[Mirrors.this.type] with ReflectiveMirror

    The API of a mirror for a reflective universe

  279. case class ScalaSigBytes(bytes: Array[Byte]) extends ClassfileAnnotArg with Product with Serializable

    A specific annotation argument that encodes an array of bytes as an array of Long.

  280. class Scope extends Iterable[Symbol]

    Note: constructor is protected to force everyone to use the factory methods newScope or newNestedScope instead.

  281. class ScopeEntry extends AnyRef

    Definition Classes
    Scopes
  282. case class Select(qualifier: Tree, name: Name) extends Tree with RefTree with SelectApi with Product with Serializable

    Designator <qualifier> .

  283. trait SelectApi extends TreeBase with RefTreeApi

    The API that all selects support

  284. abstract class SelectExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Select(qual, name).

  285. case class SelectFromTypeTree(qualifier: Tree, name: TypeName) extends Tree with TypTree with RefTree with SelectFromTypeTreeApi with Product with Serializable

    Type selection <qualifier> # <name>, eliminated by RefCheck

  286. trait SelectFromTypeTreeApi extends TreeBase with TypTreeApi with RefTreeApi

    The API that all selects from type trees support

  287. abstract class SelectFromTypeTreeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax SelectFromTypeTree(qualifier, name).

  288. trait SimpleTypeProxy extends Type

    A proxy for a type (identified by field underlying) that forwards most operations to it (for exceptions, see WrappingProxy, which forwards even more operations).

  289. abstract case class SingleType(pre: Type, sym: Symbol) extends SingletonType with SingleTypeApi with Product with Serializable

    A class for singleton types of the form <prefix>.<sym.name>.type.

  290. trait SingleTypeApi extends TypeApi

    The API that all single types support

  291. abstract class SingleTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax SingleType(pre, sym) Here, pre is the prefix of the single-type, and sym is the stable value symbol referred to by the single-type.

  292. abstract class SingletonType extends SubType with SimpleTypeProxy

    A base class for types that represent a single value (single-types and this-types).

  293. case class SingletonTypeTree(ref: Tree) extends Tree with TypTree with SingletonTypeTreeApi with Product with Serializable

    Singleton type, eliminated by RefCheck

  294. trait SingletonTypeTreeApi extends TreeBase with TypTreeApi

    The API that all singleton type trees support

  295. abstract class SingletonTypeTreeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax SingletonTypeTree(ref).

  296. abstract class StandardImporter extends Importer

    Definition Classes
    Importers
  297. case class Star(elem: Tree) extends Tree with TermTree with StarApi with Product with Serializable

    Repetition of pattern.

  298. trait StarApi extends TreeBase with TermTreeApi

    The API that all stars support

  299. abstract class StarExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Star(elem).

  300. class StrictTreeCopier extends TreeCopierOps

    Definition Classes
    Trees
  301. abstract class SubType extends Type

    A base class for types that defer some operations to their immediate supertype.

  302. class SubTypePair extends AnyRef

    Definition Classes
    Types
  303. abstract class SubstMap[T] extends TypeMap

    A base class to compute all substitutions

  304. class SubstSymMap extends SubstMap[Symbol]

    A map to implement the substSym method.

  305. class SubstThisMap extends TypeMap

    A map to implement the substThis method.

  306. class SubstTypeMap extends SubstMap[Type]

    A map to implement the subst method.

  307. class SubstWildcardMap extends TypeMap

    Definition Classes
    Types
  308. case class Super(qual: Tree, mix: TypeName) extends Tree with TermTree with SuperApi with Product with Serializable

    Super reference, qual = corresponding this reference A super reference C.

  309. trait SuperApi extends TreeBase with TermTreeApi

    The API that all supers support

  310. abstract class SuperExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Super(qual, mix).

  311. abstract case class SuperType(thistpe: Type, supertpe: Type) extends SingletonType with SuperTypeApi with Product with Serializable

    .

  312. trait SuperTypeApi extends TypeApi

    The API that all super types support

  313. abstract class SuperTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax SingleType(thistpe, supertpe)

  314. abstract class SymLoader extends LazyType

    Definition Classes
    SymbolTable
  315. trait SymTree extends Tree with SymTreeContextApi

    A tree with a mutable symbol field, initialized to NoSymbol.

  316. trait SymTreeApi extends TreeBase with TreeApi

    The API that all sym trees support

  317. trait SymTreeContextApi extends TreeBase with SymTreeApi

    The extended API of sym trees that's supported in macro context universes

  318. abstract class Symbol extends SymbolContextApiImpl with HasFlags with Annotatable[Symbol]

    The class for all symbols

  319. trait SymbolApi extends SymbolBase with HasFlagsApi

    The API of symbols

  320. trait SymbolBase extends AnyRef

    The base API that all symbols support

  321. trait SymbolContextApi extends SymbolApi

    The extended API of symbols that's supported in macro context universes

  322. abstract class SymbolContextApiImpl extends SymbolContextApi

    Definition Classes
    Symbols
  323. abstract class SymbolNames extends AnyRef

    Definition Classes
    StdNames
  324. trait SynchronizedBaseTypeSeq extends BaseTypeSeq

    Definition Classes
    SynchronizedOps
  325. trait SynchronizedClassSymbol extends ClassSymbol with SynchronizedTypeSymbol

    Definition Classes
    SynchronizedSymbols
  326. trait SynchronizedMethodSymbol extends MethodSymbol with SynchronizedTermSymbol

    Definition Classes
    SynchronizedSymbols
  327. trait SynchronizedModuleClassSymbol extends ModuleClassSymbol with SynchronizedClassSymbol

    Definition Classes
    SynchronizedSymbols
  328. trait SynchronizedScope extends Scope

    Definition Classes
    SynchronizedOps
  329. trait SynchronizedSymbol extends Symbol

    Definition Classes
    SynchronizedSymbols
  330. trait SynchronizedTermSymbol extends TermSymbol with SynchronizedSymbol

    Definition Classes
    SynchronizedSymbols
  331. trait SynchronizedTypeSymbol extends TypeSymbol with SynchronizedSymbol

    Definition Classes
    SynchronizedSymbols
  332. class SynchronizedUndoLog extends UndoLog

    Definition Classes
    SynchronizedTypes
  333. case class Template(parents: List[Tree], self: ValDef, body: List[Tree]) extends Tree with SymTree with TemplateApi with Product with Serializable

    Instantiation template of a class or trait

  334. trait TemplateApi extends TreeBase with SymTreeApi

    The API that all templates support

  335. abstract class TemplateExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Template(parents, self, body).

  336. trait TemplateMirror extends AnyRef

    A mirror that reflects the instance or static parts of a runtime class

  337. sealed abstract class TermName extends Name

    The abstract type of names representing types

  338. abstract class TermNames extends Keywords with TermNamesApi

    Definition Classes
    StdNames
  339. trait TermNamesApi extends NamesApi with TermNamesBase

    Definition Classes
    StandardNames
  340. trait TermNamesBase extends NamesBase

    Definition Classes
    StandardNames
  341. class TermSymbol extends Symbol with TermSymbolApi

    A class for term symbols

  342. trait TermSymbolApi extends SymbolApi with HasFlagsApi with TermSymbolBase

    The API of term symbols

  343. trait TermSymbolBase extends SymbolBase

    The base API that all term symbols support

  344. trait TermTree extends Tree with TermTreeApi

    A tree for a term.

  345. trait TermTreeApi extends TreeBase with TreeApi

    The API that all term trees support

  346. case class This(qual: TypeName) extends Tree with TermTree with SymTree with ThisApi with Product with Serializable

    Self reference

  347. trait ThisApi extends TreeBase with TermTreeApi with SymTreeApi

    The API that all thises support

  348. abstract class ThisExtractor extends AnyRef

    An extractor class to create and pattern match with syntax This(qual).

  349. class ThisSubstituter extends Transformer

    Substitute clazz.

  350. abstract case class ThisType(sym: Symbol) extends SingletonType with ThisTypeApi with Product with Serializable

    A class for this-types of the form <sym>.

  351. trait ThisTypeApi extends TypeApi

    The API that all this types support

  352. abstract class ThisTypeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ThisType(sym) where sym is the class prefix of the this type.

  353. case class Throw(expr: Tree) extends Tree with TermTree with ThrowApi with Product with Serializable

    Throw expression

  354. trait ThrowApi extends TreeBase with TermTreeApi

    The API that all tries support

  355. abstract class ThrowExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Throw(expr).

  356. class TopClassCompleter extends SymLoader

    The standard completer for top-level classes

  357. abstract class Transformer extends AnyRef

    Definition Classes
    Trees
  358. class Traverser extends AnyRef

    Definition Classes
    Trees
  359. abstract class Tree extends TreeContextApiImpl with Product

    Tree is the basis for scala's abstract syntax.

  360. trait TreeApi extends TreeBase

    .

  361. abstract class TreeBase extends Product

    The base API that all trees support

  362. trait TreeContextApi extends TreeBase with TreeApi

    The extended API of trees that's supported in macro context universes

  363. abstract class TreeContextApiImpl extends TreeBase with TreeContextApi

    Definition Classes
    Trees
  364. abstract type TreeCopier <: TreeCopierOps

    The standard (lazy) tree copier

    The standard (lazy) tree copier

    Definition Classes
    Trees
  365. abstract class TreeCopierOps extends AnyRef

    The API of a tree copier tree copiers are made available by an implicit conversion in reflect.

  366. class TreePrinter extends TreePrinter

    Definition Classes
    PrintersPrinters
  367. class TreeSubstituter extends Transformer

    Definition Classes
    Trees
  368. class TreeSymSubstTraverser extends TypeMapTreeSubstituter

    Definition Classes
    Trees
  369. class TreeSymSubstituter extends Transformer

    Substitute symbols in from with symbols in to.

  370. class TreeTypeSubstituter extends TypeMapTreeSubstituter

    Definition Classes
    Trees
  371. case class Try(block: Tree, catches: List[CaseDef], finalizer: Tree) extends Tree with TermTree with TryApi with Product with Serializable

    [Eugene++] comment me!

  372. trait TryApi extends TreeBase with TermTreeApi

    The API that all tries support

  373. abstract class TryExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Try(block, catches, finalizer).

  374. trait TypTree extends Tree with TypTreeApi

    A tree for a type.

  375. trait TypTreeApi extends TreeBase with TreeApi

    The API that all typ trees support

  376. abstract class Type extends TypeApiImpl with Annotatable[Type]

    The base class for all types

  377. abstract class TypeApi extends TypeBase

    The extended API of types

  378. abstract class TypeApiImpl extends TypeApi

    Definition Classes
    Types
  379. case class TypeApply(fun: Tree, args: List[Tree]) extends GenericApply with TypeApplyApi with Product with Serializable

    Explicit type application.

  380. trait TypeApplyApi extends TreeBase with GenericApplyApi

    The API that all type applies support

  381. abstract class TypeApplyExtractor extends AnyRef

    An extractor class to create and pattern match with syntax TypeApply(fun, args).

  382. abstract class TypeBase extends AnyRef

    The base API that all types support

  383. abstract case class TypeBounds(lo: Type, hi: Type) extends SubType with TypeBoundsApi with Product with Serializable

    A class for the bounds of abstract types and type parameters

  384. trait TypeBoundsApi extends TypeApi

    The API that all type bounds support

  385. abstract class TypeBoundsExtractor extends AnyRef

    An extractor class to create and pattern match with syntax TypeBound(lower, upper) Here, lower is the lower bound of the TypeBounds pair, and upper is the upper bound.

  386. case class TypeBoundsTree(lo: Tree, hi: Tree) extends Tree with TypTree with TypeBoundsTreeApi with Product with Serializable

    Document me!

  387. trait TypeBoundsTreeApi extends TreeBase with TypTreeApi

    The API that all type bound trees support

  388. abstract class TypeBoundsTreeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax TypeBoundsTree(lo, hi).

  389. abstract class TypeCollector[T] extends TypeTraverser

    Definition Classes
    Types
  390. class TypeConstraint extends AnyRef

    A class expressing upper and lower bounds constraints of type variables, as well as their instantiations.

  391. case class TypeDef(mods: Modifiers, name: TypeName, tparams: List[TypeDef], rhs: Tree) extends MemberDef with TypeDefApi with Product with Serializable

    An abstract type, a type parameter, or a type alias.

  392. trait TypeDefApi extends TreeBase with MemberDefApi

    The API that all type defs support

  393. abstract class TypeDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax TypeDef(mods, name, tparams, rhs).

  394. class TypeError extends Throwable

    A throwable signalling a type error

  395. abstract class TypeMap extends (Type) ⇒ Type

    A prototype for mapping a function over all possible types

  396. class TypeMapTreeSubstituter extends Traverser

    Definition Classes
    Trees
  397. sealed abstract class TypeName extends Name

    The abstract type of names representing terms

  398. abstract class TypeNames extends Keywords with TypeNamesApi

    Definition Classes
    StdNames
  399. trait TypeNamesApi extends NamesApi with TypeNamesBase

    Definition Classes
    StandardNames
  400. trait TypeNamesBase extends NamesBase

    Definition Classes
    StandardNames
  401. abstract case class TypeRef(pre: Type, sym: Symbol, args: List[Type]) extends Type with TypeRefApi with Product with Serializable

    A class for named types of the form <prefix>.<sym.name>[args] Cannot be created directly; one should always use typeRef for creation.

  402. trait TypeRefApi extends TypeApi

    The API that all type refs support

  403. abstract class TypeRefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax TypeRef(pre, sym, args) Here, pre is the prefix of the type reference, sym is the symbol referred to by the type reference, and args is a possible empty list of type argumenrts.

  404. class TypeSkolem extends TypeSymbol

    A class for type parameters viewed from inside their scopes

  405. abstract class TypeSymbol extends Symbol with TypeSymbolApi

    A class of type symbols.

  406. trait TypeSymbolApi extends SymbolApi with HasFlagsApi with TypeSymbolBase

    The API of type symbols

  407. trait TypeSymbolBase extends SymbolBase

    The base API that all type symbols support

  408. trait TypeTag[T] extends AbsTypeTag[T] with Equals with Serializable

    If an implicit value of type u.

  409. abstract class TypeTraverser extends TypeMap

    Definition Classes
    Types
  410. abstract class TypeTraverserWithResult[T] extends TypeTraverser

    Definition Classes
    Types
  411. case class TypeTree() extends Tree with TypTree with TypeTreeContextApi with Product with Serializable

    A synthetic tree holding an arbitrary type.

  412. trait TypeTreeApi extends TreeBase with TypTreeApi

    The API that all type trees support

  413. trait TypeTreeContextApi extends TreeBase with TypeTreeApi

    The extended API of sym trees that's supported in macro context universes

  414. abstract class TypeTreeExtractor extends AnyRef

    An extractor class to create and pattern match with syntax TypeTree().

  415. class TypeUnwrapper extends (Type) ⇒ Type

    Definition Classes
    Types
  416. class TypeVar extends Type

    A class representing a type variable: not used after phase typer.

  417. case class Typed(expr: Tree, tpt: Tree) extends Tree with TermTree with TypedApi with Product with Serializable

    Type annotation, eliminated by cleanup

  418. trait TypedApi extends TreeBase with TermTreeApi

    The API that all typeds support

  419. abstract class TypedExtractor extends AnyRef

    An extractor class to create and pattern match with syntax Typed(expr, tpt).

  420. case class UnApply(fun: Tree, args: List[Tree]) extends Tree with TermTree with UnApplyApi with Product with Serializable

    Noone knows what this is.

  421. trait UnApplyApi extends TreeBase with TermTreeApi

    The API that all unapplies support

  422. abstract class UnApplyExtractor extends AnyRef

    An extractor class to create and pattern match with syntax UnApply(fun, args).

  423. class UndoLog extends Clearable

    Definition Classes
    Types
  424. final class UniqueConstantType extends ConstantType with UniqueType

    Definition Classes
    Types
  425. final class UniqueErasedValueType extends ErasedValueType with UniqueType

    Definition Classes
    Types
  426. final class UniqueSingleType extends SingleType with UniqueType

    Definition Classes
    Types
  427. final class UniqueSuperType extends SuperType with UniqueType

    Definition Classes
    Types
  428. final class UniqueThisType extends ThisType with UniqueType

    Definition Classes
    Types
  429. trait UniqueType extends Product

    Definition Classes
    Types
  430. final class UniqueTypeBounds extends TypeBounds with UniqueType

    Definition Classes
    Types
  431. trait UntouchableTypeVar extends TypeVar

    Definition Classes
    Types
  432. case class ValDef(mods: Modifiers, name: TermName, tpt: Tree, rhs: Tree) extends ValOrDefDef with ValDefApi with Product with Serializable

    Broadly speaking, a value definition.

  433. trait ValDefApi extends TreeBase with ValOrDefDefApi

    The API that all val defs support

  434. abstract class ValDefExtractor extends AnyRef

    An extractor class to create and pattern match with syntax ValDef(mods, name, tpt, rhs).

  435. abstract class ValOrDefDef extends MemberDef with ValOrDefDefApi

    A common base class for ValDefs and DefDefs.

  436. trait ValOrDefDefApi extends TreeBase with MemberDefApi

    The API that all val defs and def defs support

  437. trait ValueClassDefinitions extends AnyRef

    Definition Classes
    Definitions
  438. trait VariantTypeMap extends TypeMap

    Definition Classes
    Types

Abstract Value Members

  1. abstract def currentRunId: RunId

    The current compiler run identifier.

    The current compiler run identifier.

    Definition Classes
    SymbolTable
  2. abstract def forInteractive: Boolean

    Definition Classes
    Required
  3. abstract def forScaladoc: Boolean

    Definition Classes
    Required
  4. abstract def log(msg: ⇒ AnyRef): Unit

    Definition Classes
    SymbolTable
  5. abstract def newLazyTreeCopier: TreeCopier

    Definition Classes
    Trees
  6. abstract def newStrictTreeCopier: TreeCopier

    Definition Classes
    Trees
  7. abstract val phaseWithId: Array[Phase]

    The phase which has given index as identifier.

    The phase which has given index as identifier.

    Definition Classes
    SymbolTable
  8. abstract def picklerPhase: Phase

    Definition Classes
    Required
  9. abstract def settings: MutableSettings

    Definition Classes
    Required

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Test two objects for inequality.

    Test two objects for inequality.

    returns

    true if !(this == that), false otherwise.

    Definition Classes
    Any
  3. final def ##(): Int

    Equivalent to x.hashCode except for boxed numeric types and null.

    Equivalent to x.hashCode except for boxed numeric types and null. For numerics, it returns a hash value which is consistent with value equality: if two value type instances compare as true, then ## will produce the same hash value for each of them. For null returns a hashcode where null.hashCode throws a NullPointerException.

    returns

    a hash value consistent with ==

    Definition Classes
    AnyRef → Any
  4. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from SymbolTable to StringAdd performed by method any2stringadd in scala.Predef.
    Definition Classes
    StringAdd
  5. def ->[B](y: B): (SymbolTable, B)

    Implicit information
    This member is added by an implicit conversion from SymbolTable to ArrowAssoc[SymbolTable] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  7. final def ==(arg0: Any): Boolean

    Test two objects for equality.

    Test two objects for equality. The expression x == that is equivalent to if (x eq null) that eq null else x.equals(that).

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    Any
  8. object AbsTypeTag extends Serializable

    Definition Classes
    TypeTags
  9. object Alternative extends AlternativeExtractor with Serializable

    The constructor/deconstructor for Alternative instances.

  10. implicit val AlternativeTag: ClassTag[Alternative]

    A tag that preserves the identity of the Alternative abstract type from erasure.

    A tag that preserves the identity of the Alternative abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  11. object Annotated extends AnnotatedExtractor with Serializable

    The constructor/deconstructor for Annotated instances.

  12. implicit val AnnotatedTag: ClassTag[Annotated]

    A tag that preserves the identity of the Annotated abstract type from erasure.

    A tag that preserves the identity of the Annotated abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  13. object AnnotatedType extends AnnotatedTypeExtractor with Serializable

    The constructor/deconstructor for AnnotatedType instances.

  14. implicit val AnnotatedTypeTag: ClassTag[AnnotatedType]

    A tag that preserves the identity of the AnnotatedType abstract type from erasure.

    A tag that preserves the identity of the AnnotatedType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  15. object AnnotationInfo extends AnnotationInfoExtractor

    Definition Classes
    AnnotationInfosAnnotationInfos
  16. implicit val AnnotationInfoTag: ClassTag[AnnotationInfo]

    Definition Classes
    AnnotationInfosAnnotationInfos
  17. lazy val AnyRefTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  18. lazy val AnyTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  19. lazy val AnyValTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  20. object AppliedTypeTree extends AppliedTypeTreeExtractor with Serializable

    The constructor/deconstructor for AppliedTypeTree instances.

  21. implicit val AppliedTypeTreeTag: ClassTag[AppliedTypeTree]

    A tag that preserves the identity of the AppliedTypeTree abstract type from erasure.

    A tag that preserves the identity of the AppliedTypeTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  22. def Apply(sym: Symbol, args: Tree*): Tree

    Definition Classes
    TreesTrees
  23. object Apply extends ApplyExtractor with Serializable

    The constructor/deconstructor for Apply instances.

  24. def ApplyConstructor(tpt: Tree, args: List[Tree]): Apply

    Definition Classes
    TreesTrees
  25. object ApplyDynamic extends ApplyDynamicExtractor with Serializable

    The constructor/deconstructor for ApplyDynamic instances.

  26. implicit val ApplyDynamicTag: ClassTag[ApplyDynamic]

    A tag that preserves the identity of the ApplyDynamic abstract type from erasure.

    A tag that preserves the identity of the ApplyDynamic abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  27. implicit val ApplyTag: ClassTag[Apply]

    A tag that preserves the identity of the Apply abstract type from erasure.

    A tag that preserves the identity of the Apply abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  28. object ApproximateDependentMap extends TypeMap

    Definition Classes
    Types
  29. object ArrayAnnotArg extends ArrayAnnotArgExtractor with Serializable

    Definition Classes
    AnnotationInfosAnnotationInfos
  30. implicit val ArrayAnnotArgTag: ClassTag[ArrayAnnotArg]

    Definition Classes
    AnnotationInfosAnnotationInfos
  31. object ArrayValue extends ArrayValueExtractor with Serializable

    The constructor/deconstructor for ArrayValue instances.

  32. implicit val ArrayValueTag: ClassTag[ArrayValue]

    A tag that preserves the identity of the ArrayValue abstract type from erasure.

    A tag that preserves the identity of the ArrayValue abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  33. object Assign extends AssignExtractor with Serializable

    The constructor/deconstructor for Assign instances.

  34. object AssignOrNamedArg extends AssignOrNamedArgExtractor with Serializable

    The constructor/deconstructor for AssignOrNamedArg instances.

  35. implicit val AssignOrNamedArgTag: ClassTag[AssignOrNamedArg]

    A tag that preserves the identity of the AssignOrNamedArg abstract type from erasure.

    A tag that preserves the identity of the AssignOrNamedArg abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  36. implicit val AssignTag: ClassTag[Assign]

    A tag that preserves the identity of the Assign abstract type from erasure.

    A tag that preserves the identity of the Assign abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  37. object BackquotedIdentifierAttachment extends Product with Serializable

    Definition Classes
    StdAttachments
  38. def Bind(sym: Symbol, body: Tree): Bind

    Definition Classes
    TreesTrees
  39. object Bind extends BindExtractor with Serializable

    The constructor/deconstructor for Bind instances.

  40. implicit val BindTag: ClassTag[Bind]

    A tag that preserves the identity of the Bind abstract type from erasure.

    A tag that preserves the identity of the Bind abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  41. def Block(stats: Tree*): Block

    Block factory that flattens directly nested blocks.

    Block factory that flattens directly nested blocks.

    Definition Classes
    TreesTrees
  42. object Block extends BlockExtractor with Serializable

    The constructor/deconstructor for Block instances.

  43. implicit val BlockTag: ClassTag[Block]

    A tag that preserves the identity of the Block abstract type from erasure.

    A tag that preserves the identity of the Block abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  44. object BooleanFlag extends Serializable

    Definition Classes
    Printers
  45. final val BooleanTag: Int(2)

    Definition Classes
    Constants
  46. lazy val BooleanTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  47. object BoundedWildcardType extends BoundedWildcardTypeExtractor with Serializable

    Definition Classes
    TypesTypes
  48. implicit val BoundedWildcardTypeTag: ClassTag[BoundedWildcardType]

    A tag that preserves the identity of the BoundedWildcardType abstract type from erasure.

    A tag that preserves the identity of the BoundedWildcardType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  49. final val ByteTag: Int(3)

    Definition Classes
    Constants
  50. lazy val ByteTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  51. def CaseDef(pat: Tree, body: Tree): CaseDef

    casedef shorthand

    casedef shorthand

    Definition Classes
    TreesTrees
  52. object CaseDef extends CaseDefExtractor with Serializable

    The constructor/deconstructor for CaseDef instances.

  53. implicit val CaseDefTag: ClassTag[CaseDef]

    A tag that preserves the identity of the CaseDef abstract type from erasure.

    A tag that preserves the identity of the CaseDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  54. final val CharTag: Int(5)

    Definition Classes
    Constants
  55. lazy val CharTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  56. def ClassDef(sym: Symbol, impl: Template): ClassDef

    sym

    the class symbol

    impl

    the implementation template@return the implementation template

    Definition Classes
    TreesTrees
  57. object ClassDef extends ClassDefExtractor with Serializable

    The constructor/deconstructor for ClassDef instances.

  58. implicit val ClassDefTag: ClassTag[ClassDef]

    A tag that preserves the identity of the ClassDef abstract type from erasure.

    A tag that preserves the identity of the ClassDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  59. object ClassInfoType extends ClassInfoTypeExtractor with Serializable

    The constructor/deconstructor for ClassInfoType instances.

  60. implicit val ClassInfoTypeTag: ClassTag[ClassInfoType]

    A tag that preserves the identity of the ClassInfoType abstract type from erasure.

    A tag that preserves the identity of the ClassInfoType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  61. implicit val ClassSymbolTag: ClassTag[ClassSymbol]

    A tag that preserves the identity of the ClassSymbol abstract type from erasure.

    A tag that preserves the identity of the ClassSymbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  62. implicit val ClassfileAnnotArgTag: ClassTag[ClassfileAnnotArg]

    Definition Classes
    AnnotationInfosAnnotationInfos
  63. final val ClazzTag: Int(12)

    Definition Classes
    Constants
  64. implicit val CompoundTypeTag: ClassTag[CompoundType]

    A tag that preserves the identity of the CompoundType abstract type from erasure.

    A tag that preserves the identity of the CompoundType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  65. object CompoundTypeTree extends CompoundTypeTreeExtractor with Serializable

    The constructor/deconstructor for CompoundTypeTree instances.

  66. implicit val CompoundTypeTreeTag: ClassTag[CompoundTypeTree]

    A tag that preserves the identity of the CompoundTypeTree abstract type from erasure.

    A tag that preserves the identity of the CompoundTypeTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  67. object ConsoleWriter extends Writer

    A writer that writes to the current Console and is sensitive to replacement of the Console's output stream.

  68. object Constant extends ConstantExtractor with Serializable

    Definition Classes
    ConstantsConstants
  69. implicit val ConstantTag: ClassTag[Constant]

    Definition Classes
    ConstantsConstants
  70. object ConstantType extends ConstantTypeExtractor with Serializable

    The constructor/deconstructor for ConstantType instances.

  71. implicit val ConstantTypeTag: ClassTag[ConstantType]

    A tag that preserves the identity of the ConstantType abstract type from erasure.

    A tag that preserves the identity of the ConstantType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  72. val CyclicInheritance: Throwable

    Definition Classes
    BaseTypeSeqs
  73. def DefDef(sym: Symbol, rhs: (List[List[Symbol]]) ⇒ Tree): DefDef

    Definition Classes
    TreesTrees
  74. def DefDef(sym: Symbol, rhs: Tree): DefDef

    Definition Classes
    TreesTrees
  75. def DefDef(sym: Symbol, mods: Modifiers, rhs: Tree): DefDef

    Definition Classes
    TreesTrees
  76. def DefDef(sym: Symbol, vparamss: List[List[ValDef]], rhs: Tree): DefDef

    Definition Classes
    TreesTrees
  77. def DefDef(sym: Symbol, mods: Modifiers, vparamss: List[List[ValDef]], rhs: Tree): DefDef

    Definition Classes
    TreesTrees
  78. object DefDef extends DefDefExtractor with Serializable

    The constructor/deconstructor for DefDef instances.

  79. implicit val DefDefTag: ClassTag[DefDef]

    A tag that preserves the identity of the DefDef abstract type from erasure.

    A tag that preserves the identity of the DefDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  80. implicit val DefTreeTag: ClassTag[DefTree]

    A tag that preserves the identity of the DefTree abstract type from erasure.

    A tag that preserves the identity of the DefTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  81. final val DoubleTag: Int(9)

    Definition Classes
    Constants
  82. lazy val DoubleTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  83. object EmptyScope extends Scope

    The empty scope (immutable).

  84. def EmptyTermName: TermName

    Definition Classes
    Names
  85. object EmptyTree extends Tree with TermTree with Product with Serializable

    The empty tree

  86. lazy val EmptyTreeTypeSubstituter: TreeTypeSubstituter

    Definition Classes
    Trees
  87. def EmptyTypeName: TypeName

    Definition Classes
    Names
  88. final val EnumTag: Int(13)

    Definition Classes
    Constants
  89. object ErasedValueType extends Serializable

    Definition Classes
    Types
  90. object ErroneousCollector extends TypeCollector[Boolean]

    A map to implement the contains method.

  91. object ErrorType extends Type with Product with Serializable

    An object representing an erroneous type

  92. object ExistentialType extends ExistentialTypeExtractor with Serializable

    The constructor/deconstructor for ExistentialType instances.

  93. implicit val ExistentialTypeTag: ClassTag[ExistentialType]

    A tag that preserves the identity of the ExistentialType abstract type from erasure.

    A tag that preserves the identity of the ExistentialType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  94. object ExistentialTypeTree extends ExistentialTypeTreeExtractor with Serializable

    The constructor/deconstructor for ExistentialTypeTree instances.

  95. implicit val ExistentialTypeTreeTag: ClassTag[ExistentialTypeTree]

    A tag that preserves the identity of the ExistentialTypeTree abstract type from erasure.

    A tag that preserves the identity of the ExistentialTypeTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  96. object Expr extends Serializable

    Definition Classes
    Exprs
  97. object Flag extends FlagValues

    Definition Classes
    FlagSetsFlagSets
  98. implicit val FlagSetTag: ClassTag[FlagSet]

    Definition Classes
    FlagSets
  99. final val FloatTag: Int(8)

    Definition Classes
    Constants
  100. lazy val FloatTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  101. implicit val FreeTermSymbolTag: ClassTag[FreeTermSymbol]

    A tag that preserves the identity of the FreeTermSymbol abstract type from erasure.

    A tag that preserves the identity of the FreeTermSymbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  102. implicit val FreeTypeSymbolTag: ClassTag[FreeTypeSymbol]

    A tag that preserves the identity of the FreeTypeSymbol abstract type from erasure.

    A tag that preserves the identity of the FreeTypeSymbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  103. object Function extends FunctionExtractor with Serializable

    The constructor/deconstructor for Function instances.

  104. implicit val FunctionTag: ClassTag[Function]

    A tag that preserves the identity of the Function abstract type from erasure.

    A tag that preserves the identity of the Function abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  105. object GenPolyType

    A creator and extractor for type parameterizations that strips empty type parameter lists.

  106. implicit val GenericApplyTag: ClassTag[GenericApply]

    A tag that preserves the identity of the GenericApply abstract type from erasure.

    A tag that preserves the identity of the GenericApply abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  107. val GlbFailure: Throwable

    Definition Classes
    Types
  108. object HasTypeMember

    Definition Classes
    Types
  109. object HasTypeParams

    Definition Classes
    Types
  110. def Ident(sym: Symbol): Ident

    Definition Classes
    TreesTrees
  111. def Ident(name: String): Ident

    Definition Classes
    TreesTrees
  112. object Ident extends IdentExtractor with Serializable

    The constructor/deconstructor for Ident instances.

  113. implicit val IdentTag: ClassTag[Ident]

    A tag that preserves the identity of the Ident abstract type from erasure.

    A tag that preserves the identity of the Ident abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  114. object If extends IfExtractor with Serializable

    The constructor/deconstructor for If instances.

  115. implicit val IfTag: ClassTag[If]

    A tag that preserves the identity of the If abstract type from erasure.

    A tag that preserves the identity of the If abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  116. implicit val ImplDefTag: ClassTag[ImplDef]

    A tag that preserves the identity of the ImplDef abstract type from erasure.

    A tag that preserves the identity of the ImplDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  117. object Import extends ImportExtractor with Serializable

    The constructor/deconstructor for Import instances.

  118. object ImportSelector extends ImportSelectorExtractor with Serializable

    The constructor/deconstructor for ImportSelector instances.

  119. implicit val ImportSelectorTag: ClassTag[ImportSelector]

    A tag that preserves the identity of the ImportSelector abstract type from erasure.

    A tag that preserves the identity of the ImportSelector abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  120. implicit val ImportTag: ClassTag[Import]

    A tag that preserves the identity of the Import abstract type from erasure.

    A tag that preserves the identity of the Import abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  121. final val IntTag: Int(6)

    Definition Classes
    Constants
  122. lazy val IntTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  123. object IsDependentCollector extends TypeCollector[Boolean]

    Definition Classes
    Types
  124. def JavaMethodType(params: List[Symbol], resultType: Type): JavaMethodType

    The canonical creator for implicit method types

    The canonical creator for implicit method types

    Definition Classes
    Types
  125. def LabelDef(sym: Symbol, params: List[Symbol], rhs: Tree): LabelDef

    Definition Classes
    TreesTrees
  126. object LabelDef extends LabelDefExtractor with Serializable

    The constructor/deconstructor for LabelDef instances.

  127. implicit val LabelDefTag: ClassTag[LabelDef]

    A tag that preserves the identity of the LabelDef abstract type from erasure.

    A tag that preserves the identity of the LabelDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  128. object Literal extends LiteralExtractor with Serializable

    The constructor/deconstructor for Literal instances.

  129. object LiteralAnnotArg extends LiteralAnnotArgExtractor with Serializable

    Definition Classes
    AnnotationInfosAnnotationInfos
  130. implicit val LiteralAnnotArgTag: ClassTag[LiteralAnnotArg]

    Definition Classes
    AnnotationInfosAnnotationInfos
  131. implicit val LiteralTag: ClassTag[Literal]

    A tag that preserves the identity of the Literal abstract type from erasure.

    A tag that preserves the identity of the Literal abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  132. final val LongTag: Int(7)

    Definition Classes
    Constants
  133. lazy val LongTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  134. object Match extends MatchExtractor with Serializable

    The constructor/deconstructor for Match instances.

  135. implicit val MatchTag: ClassTag[Match]

    A tag that preserves the identity of the Match abstract type from erasure.

    A tag that preserves the identity of the Match abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  136. implicit val MemberDefTag: ClassTag[MemberDef]

    A tag that preserves the identity of the MemberDef abstract type from erasure.

    A tag that preserves the identity of the MemberDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  137. implicit val MethodSymbolTag: ClassTag[MethodSymbol]

    A tag that preserves the identity of the MethodSymbol abstract type from erasure.

    A tag that preserves the identity of the MethodSymbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  138. object MethodType extends MethodTypeExtractor with Serializable

    The constructor/deconstructor for MethodType instances.

  139. implicit val MethodTypeTag: ClassTag[MethodType]

    A tag that preserves the identity of the MethodType abstract type from erasure.

    A tag that preserves the identity of the MethodType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  140. def Modifiers(flags: FlagSet): Modifiers

    Definition Classes
    Trees
  141. def Modifiers(flags: FlagSet, privateWithin: Name): Modifiers

    Definition Classes
    Trees
  142. object Modifiers extends ModifiersCreator with Serializable

    Definition Classes
    TreesTrees
  143. implicit val ModifiersTag: ClassTag[Modifiers]

    A tag that preserves the identity of the Modifiers abstract type from erasure.

    A tag that preserves the identity of the Modifiers abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  144. def ModuleDef(sym: Symbol, impl: Template): ModuleDef

    sym

    the class symbol

    impl

    the implementation template

    Definition Classes
    TreesTrees
  145. object ModuleDef extends ModuleDefExtractor with Serializable

    The constructor/deconstructor for ModuleDef instances.

  146. implicit val ModuleDefTag: ClassTag[ModuleDef]

    A tag that preserves the identity of the ModuleDef abstract type from erasure.

    A tag that preserves the identity of the ModuleDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  147. implicit val ModuleSymbolTag: ClassTag[ModuleSymbol]

    A tag that preserves the identity of the ModuleSymbol abstract type from erasure.

    A tag that preserves the identity of the ModuleSymbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  148. implicit val NameTag: ClassTag[Name]

    Definition Classes
    NamesNames
  149. implicit val NameTreeTag: ClassTag[NameTree]

    A tag that preserves the identity of the NameTree abstract type from erasure.

    A tag that preserves the identity of the NameTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  150. object NestedAnnotArg extends NestedAnnotArgExtractor with Serializable

    Definition Classes
    AnnotationInfosAnnotationInfos
  151. implicit val NestedAnnotArgTag: ClassTag[NestedAnnotArg]

    Definition Classes
    AnnotationInfosAnnotationInfos
  152. def New(sym: Symbol, args: Tree*): Tree

    Definition Classes
    TreesTrees
  153. def New(tpe: Type, args: Tree*): Tree

    0-1 argument list new, based on a type.

    0-1 argument list new, based on a type.

    Definition Classes
    TreesTrees
  154. def New(tpt: Tree, argss: List[List[Tree]]): Tree

    Factory method for object creation new tpt(args_1)...(args_n) A New(t, as) is expanded to: (new t).<init>(as)

    Factory method for object creation new tpt(args_1)...(args_n) A New(t, as) is expanded to: (new t).<init>(as)

    Definition Classes
    TreesTrees
  155. object New extends NewExtractor with Serializable

    The constructor/deconstructor for New instances.

  156. implicit val NewTag: ClassTag[New]

    A tag that preserves the identity of the New abstract type from erasure.

    A tag that preserves the identity of the New abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  157. val NoFlags: FlagSet

    Definition Classes
    FlagSets
  158. val NoKindErrors: KindErrors

    Definition Classes
    Kinds
  159. lazy val NoMods: Modifiers

    .

    ...

    Definition Classes
    Trees
  160. final val NoPeriod: Int(0)

    Definition Classes
    SymbolTable
  161. val NoPosition: reflect.internal.util.NoPosition.type

    .

    ..

    Definition Classes
    PositionsPositions
  162. object NoPrefix extends Type with Product with Serializable

    An object representing a non-existing prefix

  163. final val NoRunId: Int(0)

    Definition Classes
    SymbolTable
  164. lazy val NoSymbol: NoSymbol

    Definition Classes
    SymbolsSymbols
  165. final val NoTag: Int(0)

    Definition Classes
    Constants
  166. object NoType extends Type with Product with Serializable

    An object representing a non-existing type

  167. lazy val NothingTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  168. final val NullTag: Int(11)

    Definition Classes
    Constants
  169. lazy val NullTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  170. object NullaryMethodType extends NullaryMethodTypeExtractor with Serializable

    The constructor/deconstructor for NullaryMethodType instances.

  171. implicit val NullaryMethodTypeTag: ClassTag[NullaryMethodType]

    A tag that preserves the identity of the NullaryMethodType abstract type from erasure.

    A tag that preserves the identity of the NullaryMethodType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  172. lazy val ObjectTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  173. object PackageDef extends PackageDefExtractor with Serializable

    The constructor/deconstructor for PackageDef instances.

  174. implicit val PackageDefTag: ClassTag[PackageDef]

    A tag that preserves the identity of the PackageDef abstract type from erasure.

    A tag that preserves the identity of the PackageDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  175. object PolyType extends PolyTypeExtractor with Serializable

    The constructor/deconstructor for PolyType instances.

  176. implicit val PolyTypeTag: ClassTag[PolyType]

    A tag that preserves the identity of the PolyType abstract type from erasure.

    A tag that preserves the identity of the PolyType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  177. implicit val PositionTag: ClassTag[Position]

    A tag that preserves the identity of the FlagSet abstract type from erasure.

    A tag that preserves the identity of the FlagSet abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    PositionsPositions
  178. implicit val RefTreeTag: ClassTag[RefTree]

    A tag that preserves the identity of the RefTree abstract type from erasure.

    A tag that preserves the identity of the RefTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  179. object ReferenceToBoxed extends ReferenceToBoxedExtractor with Serializable

    The constructor/deconstructor for ReferenceToBoxed instances.

  180. implicit val ReferenceToBoxedTag: ClassTag[ReferenceToBoxed]

    A tag that preserves the identity of the ReferenceToBoxed abstract type from erasure.

    A tag that preserves the identity of the ReferenceToBoxed abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  181. object RefinedType extends RefinedTypeExtractor with Serializable

    The constructor/deconstructor for RefinedType instances.

  182. implicit val RefinedTypeTag: ClassTag[RefinedType]

    A tag that preserves the identity of the RefinedType abstract type from erasure.

    A tag that preserves the identity of the RefinedType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  183. object Return extends ReturnExtractor with Serializable

    The constructor/deconstructor for Return instances.

  184. implicit val ReturnTag: ClassTag[Return]

    A tag that preserves the identity of the Return abstract type from erasure.

    A tag that preserves the identity of the Return abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  185. object Scope

    Definition Classes
    Scopes
  186. implicit val ScopeTag: ClassTag[Scope]

    A tag that preserves the identity of the Scope abstract type from erasure.

    A tag that preserves the identity of the Scope abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    ScopesScopes
  187. def Select(qualifier: Tree, sym: Symbol): Select

    Definition Classes
    TreesTrees
  188. def Select(qualifier: Tree, name: String): Select

    Definition Classes
    TreesTrees
  189. object Select extends SelectExtractor with Serializable

    The constructor/deconstructor for Select instances.

  190. object SelectFromTypeTree extends SelectFromTypeTreeExtractor with Serializable

    The constructor/deconstructor for SelectFromTypeTree instances.

  191. implicit val SelectFromTypeTreeTag: ClassTag[SelectFromTypeTree]

    A tag that preserves the identity of the SelectFromTypeTree abstract type from erasure.

    A tag that preserves the identity of the SelectFromTypeTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  192. implicit val SelectTag: ClassTag[Select]

    A tag that preserves the identity of the Select abstract type from erasure.

    A tag that preserves the identity of the Select abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  193. final val ShortTag: Int(4)

    Definition Classes
    Constants
  194. lazy val ShortTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  195. object SingleType extends SingleTypeExtractor with Serializable

    The constructor/deconstructor for SingleType instances.

  196. implicit val SingleTypeTag: ClassTag[SingleType]

    A tag that preserves the identity of the SingleType abstract type from erasure.

    A tag that preserves the identity of the SingleType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  197. implicit val SingletonTypeTag: ClassTag[SingletonType]

    A tag that preserves the identity of the SingletonType abstract type from erasure.

    A tag that preserves the identity of the SingletonType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  198. object SingletonTypeTree extends SingletonTypeTreeExtractor with Serializable

    The constructor/deconstructor for SingletonTypeTree instances.

  199. implicit val SingletonTypeTreeTag: ClassTag[SingletonTypeTree]

    A tag that preserves the identity of the SingletonTypeTree abstract type from erasure.

    A tag that preserves the identity of the SingletonTypeTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  200. object Star extends StarExtractor with Serializable

    The constructor/deconstructor for Star instances.

  201. implicit val StarTag: ClassTag[Star]

    A tag that preserves the identity of the Star abstract type from erasure.

    A tag that preserves the identity of the Star abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  202. final val StringTag: Int(10)

    Definition Classes
    Constants
  203. object StripAnnotationsMap extends TypeMap

    Definition Classes
    Types
  204. def Super(sym: Symbol, mix: TypeName): Tree

    Definition Classes
    TreesTrees
  205. object Super extends SuperExtractor with Serializable

    The constructor/deconstructor for Super instances.

  206. implicit val SuperTag: ClassTag[Super]

    A tag that preserves the identity of the Super abstract type from erasure.

    A tag that preserves the identity of the Super abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  207. object SuperType extends SuperTypeExtractor with Serializable

    The constructor/deconstructor for SuperType instances.

  208. implicit val SuperTypeTag: ClassTag[SuperType]

    A tag that preserves the identity of the SuperType abstract type from erasure.

    A tag that preserves the identity of the SuperType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  209. implicit val SymTreeTag: ClassTag[SymTree]

    A tag that preserves the identity of the SymTree abstract type from erasure.

    A tag that preserves the identity of the SymTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  210. implicit val SymbolTag: ClassTag[Symbol]

    A tag that preserves the identity of the Symbol abstract type from erasure.

    A tag that preserves the identity of the Symbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  211. object Template extends TemplateExtractor with Serializable

    The constructor/deconstructor for Template instances.

  212. implicit val TemplateTag: ClassTag[Template]

    A tag that preserves the identity of the Template abstract type from erasure.

    A tag that preserves the identity of the Template abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  213. implicit val TermNameTag: ClassTag[TermName]

    Definition Classes
    NamesNames
  214. implicit val TermSymbolTag: ClassTag[TermSymbol]

    A tag that preserves the identity of the TermSymbol abstract type from erasure.

    A tag that preserves the identity of the TermSymbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  215. implicit val TermTreeTag: ClassTag[TermTree]

    A tag that preserves the identity of the TermTree abstract type from erasure.

    A tag that preserves the identity of the TermTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  216. def This(sym: Symbol): Tree

    Definition Classes
    TreesTrees
  217. object This extends ThisExtractor with Serializable

    The constructor/deconstructor for This instances.

  218. implicit val ThisTag: ClassTag[This]

    A tag that preserves the identity of the This abstract type from erasure.

    A tag that preserves the identity of the This abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  219. object ThisType extends ThisTypeExtractor with Serializable

    The constructor/deconstructor for ThisType instances.

  220. implicit val ThisTypeTag: ClassTag[ThisType]

    A tag that preserves the identity of the ThisType abstract type from erasure.

    A tag that preserves the identity of the ThisType abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  221. def Throw(tpe: Type, args: Tree*): Throw

    Definition Classes
    TreesTrees
  222. object Throw extends ThrowExtractor with Serializable

    The constructor/deconstructor for Throw instances.

  223. implicit val ThrowTag: ClassTag[Throw]

    A tag that preserves the identity of the Throw abstract type from erasure.

    A tag that preserves the identity of the Throw abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  224. implicit val TreeTag: ClassTag[Tree]

    A tag that preserves the identity of the Tree abstract type from erasure.

    A tag that preserves the identity of the Tree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  225. def Try(body: Tree, cases: (Tree, Tree)*): Try

    Definition Classes
    TreesTrees
  226. object Try extends TryExtractor with Serializable

    The constructor/deconstructor for Try instances.

  227. implicit val TryTag: ClassTag[Try]

    A tag that preserves the identity of the Try abstract type from erasure.

    A tag that preserves the identity of the Try abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  228. implicit val TypTreeTag: ClassTag[TypTree]

    A tag that preserves the identity of the TypTree abstract type from erasure.

    A tag that preserves the identity of the TypTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  229. object TypeApply extends TypeApplyExtractor with Serializable

    The constructor/deconstructor for TypeApply instances.

  230. implicit val TypeApplyTag: ClassTag[TypeApply]

    A tag that preserves the identity of the TypeApply abstract type from erasure.

    A tag that preserves the identity of the TypeApply abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  231. object TypeBounds extends TypeBoundsExtractor with Serializable

    The constructor/deconstructor for TypeBounds instances.

  232. implicit val TypeBoundsTag: ClassTag[TypeBounds]

    A tag that preserves the identity of the TypeBounds abstract type from erasure.

    A tag that preserves the identity of the TypeBounds abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  233. object TypeBoundsTree extends TypeBoundsTreeExtractor with Serializable

    The constructor/deconstructor for TypeBoundsTree instances.

  234. implicit val TypeBoundsTreeTag: ClassTag[TypeBoundsTree]

    A tag that preserves the identity of the TypeBoundsTree abstract type from erasure.

    A tag that preserves the identity of the TypeBoundsTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  235. def TypeDef(sym: Symbol): TypeDef

    A TypeDef node which defines abstract type or type parameter for given sym

    A TypeDef node which defines abstract type or type parameter for given sym

    Definition Classes
    TreesTrees
  236. def TypeDef(sym: Symbol, rhs: Tree): TypeDef

    A TypeDef node which defines given sym with given tight hand side rhs.

    A TypeDef node which defines given sym with given tight hand side rhs.

    Definition Classes
    TreesTrees
  237. object TypeDef extends TypeDefExtractor with Serializable

    The constructor/deconstructor for TypeDef instances.

  238. implicit val TypeDefTag: ClassTag[TypeDef]

    A tag that preserves the identity of the TypeDef abstract type from erasure.

    A tag that preserves the identity of the TypeDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  239. implicit val TypeNameTag: ClassTag[TypeName]

    Definition Classes
    NamesNames
  240. object TypeRef extends TypeRefExtractor with Serializable

    The constructor/deconstructor for TypeRef instances.

  241. implicit val TypeRefTag: ClassTag[TypeRef]

    A tag that preserves the identity of the TypeRef abstract type from erasure.

    A tag that preserves the identity of the TypeRef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  242. implicit val TypeSymbolTag: ClassTag[TypeSymbol]

    A tag that preserves the identity of the TypeSymbol abstract type from erasure.

    A tag that preserves the identity of the TypeSymbol abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    SymbolsSymbols
  243. object TypeTag extends Serializable

    Definition Classes
    TypeTags
  244. implicit val TypeTagg: ClassTag[Type]

    A tag that preserves the identity of the Type abstract type from erasure.

    A tag that preserves the identity of the Type abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TypesTypes
  245. def TypeTree(tp: Type): TypeTree

    Definition Classes
    TreesTrees
  246. object TypeTree extends TypeTreeExtractor with Serializable

    The constructor/deconstructor for TypeTree instances.

  247. implicit val TypeTreeTag: ClassTag[TypeTree]

    A tag that preserves the identity of the TypeTree abstract type from erasure.

    A tag that preserves the identity of the TypeTree abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  248. object TypeVar

    Definition Classes
    Types
  249. object Typed extends TypedExtractor with Serializable

    The constructor/deconstructor for Typed instances.

  250. implicit val TypedTag: ClassTag[Typed]

    A tag that preserves the identity of the Typed abstract type from erasure.

    A tag that preserves the identity of the Typed abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  251. object UnApply extends UnApplyExtractor with Serializable

    The constructor/deconstructor for UnApply instances.

  252. implicit val UnApplyTag: ClassTag[UnApply]

    A tag that preserves the identity of the UnApply abstract type from erasure.

    A tag that preserves the identity of the UnApply abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  253. final val UnitTag: Int(1)

    Definition Classes
    Constants
  254. lazy val UnitTpe: Type

    Definition Classes
    DefinitionsStandardTypes
  255. object UnmappableAnnotation extends CompleteAnnotationInfo

    Definition Classes
    AnnotationInfos
  256. object UnmappableTree extends Tree with TermTree with Product with Serializable

    Definition Classes
    Types
  257. def ValDef(sym: Symbol): ValDef

    Definition Classes
    TreesTrees
  258. def ValDef(sym: Symbol, rhs: Tree): ValDef

    Definition Classes
    TreesTrees
  259. object ValDef extends ValDefExtractor with Serializable

    The constructor/deconstructor for ValDef instances.

  260. implicit val ValDefTag: ClassTag[ValDef]

    A tag that preserves the identity of the ValDef abstract type from erasure.

    A tag that preserves the identity of the ValDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  261. implicit val ValOrDefDefTag: ClassTag[ValOrDefDef]

    A tag that preserves the identity of the ValOrDefDef abstract type from erasure.

    A tag that preserves the identity of the ValOrDefDef abstract type from erasure. Can be used for pattern matching, instance tests, serialization and likes.

    Definition Classes
    TreesTrees
  262. object WildcardType extends Type with Product with Serializable

    An object representing an unknown type, used during type inference.

  263. def abort(msg: String): Nothing

    Definition Classes
    SymbolTable
  264. def abstractTypesToBounds(tp: Type): Type

    Type with all top-level occurrences of abstract types replaced by their bounds

    Type with all top-level occurrences of abstract types replaced by their bounds

    Definition Classes
    Types
  265. def adaptAnnotations(tree: Tree, mode: Int, pt: Type): Tree

    Let registered annotation checkers adapt a tree to a given type (called by Typers.

    Let registered annotation checkers adapt a tree to a given type (called by Typers.adapt). Annotation checkers that cannot do the adaption should pass the tree through unchanged.

    Definition Classes
    AnnotationCheckers
  266. def adaptBoundsToAnnotations(bounds: List[TypeBounds], tparams: List[Symbol], targs: List[Type]): List[TypeBounds]

    Refine the bounds on type parameters to the given type arguments.

    Refine the bounds on type parameters to the given type arguments.

    Definition Classes
    AnnotationCheckers
  267. object adaptToNewRunMap extends TypeMap

    Definition Classes
    Types
  268. def addAnnotationChecker(checker: AnnotationChecker): Unit

    Register an annotation checker.

    Register an annotation checker. Typically these are added by compiler plugins.

    Definition Classes
    AnnotationCheckers
  269. def addAnnotations(tree: Tree, tpe: Type): Type

    Let all annotations checkers add extra annotations to this tree's type.

    Let all annotations checkers add extra annotations to this tree's type.

    Definition Classes
    AnnotationCheckers
  270. implicit def addFlagOps(left: FlagSet): FlagOps

    Definition Classes
    FlagSetsFlagSets
  271. def addMember(thistp: Type, tp: Type, sym: Symbol, depth: Int): Unit

    Make symbol sym a member of scope tp.decls where thistp is the narrowed owner type of the scope.

    Make symbol sym a member of scope tp.decls where thistp is the narrowed owner type of the scope.

    Definition Classes
    Types
  272. def addMember(thistp: Type, tp: Type, sym: Symbol): Unit

    Definition Classes
    Types
  273. def addSerializable(ps: Type*): List[Type]

    Definition Classes
    Types
  274. final def afterCurrentPhase[T](op: ⇒ T): T

    Definition Classes
    SymbolTable
    Annotations
    @inline()
  275. final def afterPhase[T](ph: Phase)(op: ⇒ T): T

    Definition Classes
    SymbolTable
    Annotations
    @inline()
  276. def annotatedType(annots: List[AnnotationInfo], underlying: Type, selfsym: Symbol = NoSymbol): Type

    Creator for AnnotatedTypes.

    Creator for AnnotatedTypes. It returns the underlying type if annotations.isEmpty rather than walking into the assertion.

    Definition Classes
    Types
  277. def annotationsConform(tp1: Type, tp2: Type): Boolean

    Check that the annotations on two types conform.

    Check that the annotations on two types conform. To do so, consult all registered annotation checkers.

    Definition Classes
    AnnotationCheckers
  278. def annotationsGlb(tpe: Type, ts: List[Type]): Type

    Refine the computed greatest lower bound of a list of types.

    Refine the computed greatest lower bound of a list of types. All this should do is add annotations.

    Definition Classes
    AnnotationCheckers
  279. def annotationsLub(tpe: Type, ts: List[Type]): Type

    Refine the computed least upper bound of a list of types.

    Refine the computed least upper bound of a list of types. All this should do is add annotations.

    Definition Classes
    AnnotationCheckers
  280. def appliedType(tyconSym: Symbol, args: Type*): Type

    Very convenient.

    Very convenient.

    Definition Classes
    Types
  281. def appliedType(tycon: Type, args: List[Type]): Type

    A creator for type applications

    A creator for type applications

    Definition Classes
    TypesTypes
  282. def appliedTypeAsUpperBounds(tycon: Type, args: List[Type]): Type

    A creator for existential types where the type arguments, rather than being applied directly, are interpreted as the upper bounds of unknown types.

    A creator for existential types where the type arguments, rather than being applied directly, are interpreted as the upper bounds of unknown types. For instance if the type argument list given is List(AnyRefClass), the resulting type would be e.g. Set[_ <: AnyRef] rather than Set[AnyRef] .

    Definition Classes
    Types
  283. def arrayToRepeated(tp: Type): Type

    Convert array parameters denoting a repeated parameter of a Java method to JavaRepeatedParamClass types.

    Convert array parameters denoting a repeated parameter of a Java method to JavaRepeatedParamClass types.

    Definition Classes
    SymbolTable
  284. final def asInstanceOf[T0]: T0

    Cast the receiver object to be of type T0.

    Cast the receiver object to be of type T0.

    Note that the success of a cast at runtime is modulo Scala's erasure semantics. Therefore the expression 1.asInstanceOf[String] will throw a ClassCastException at runtime, while the expression List(1).asInstanceOf[List[String]] will not. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the requested type.

    returns

    the receiver object.

    Definition Classes
    Any
    Exceptions thrown
    ClassCastException

    if the receiver object is not an instance of the erasure of type T0.

  285. final def atPhase[T](ph: Phase)(op: ⇒ T): T

    Perform given operation at given phase.

    Perform given operation at given phase.

    Definition Classes
    SymbolTable
    Annotations
    @inline()
  286. final def atPhaseNotLaterThan[T](target: Phase)(op: ⇒ T): T

    Definition Classes
    SymbolTable
    Annotations
    @inline()
  287. final def atPhaseStack: List[Phase]

    Definition Classes
    SymbolTable
  288. def atPhaseStackMessage: String

    Definition Classes
    SymbolTable
  289. def atPos[T <: Tree](pos: Position)(tree: T): T

    Assigns a given position to all position-less nodes of a given AST.

    Assigns a given position to all position-less nodes of a given AST.

    Definition Classes
    PositionsPositions
  290. def backquotedPath(t: Tree): String

    Turns a path into a String, introducing backquotes as necessary.

    Turns a path into a String, introducing backquotes as necessary.

    Definition Classes
    Printers
  291. def baseTypeOfNonClassTypeRef(tpe: NonClassTypeRef, clazz: Symbol): Type

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  292. def baseTypeSingletonSeq(tp: Type): BaseTypeSeq

    Create a base type sequence consisting of a single type

    Create a base type sequence consisting of a single type

    Definition Classes
    BaseTypeSeqs
  293. final def beforePhase[T](ph: Phase)(op: ⇒ T): T

    Since when it is to be "at" a phase is inherently ambiguous, a couple unambiguously named methods.

    Since when it is to be "at" a phase is inherently ambiguous, a couple unambiguously named methods.

    Definition Classes
    SymbolTable
    Annotations
    @inline()
  294. final def beforePrevPhase[T](op: ⇒ T): T

    Definition Classes
    SymbolTable
    Annotations
    @inline()
  295. def beginsWithTypeVarOrIsRefined(tp: Type): Boolean

    Does this type have a prefix that begins with a type variable, or is it a refinement type? For type prefixes that fulfil this condition, type selections with the same name of equal (wrt) =:= prefixes are considered equal wrt =:=

    Does this type have a prefix that begins with a type variable, or is it a refinement type? For type prefixes that fulfil this condition, type selections with the same name of equal (wrt) =:= prefixes are considered equal wrt =:=

    Definition Classes
    Types
  296. object binarynme

    Java binary names, like scala/runtime/Nothing$.

  297. val build: BuildBase

    Definition Classes
    BuildUtilsBuildUtils
  298. def canAdaptAnnotations(tree: Tree, mode: Int, pt: Type): Boolean

    Find out whether any annotation checker can adapt a tree to a given type.

    Find out whether any annotation checker can adapt a tree to a given type. Called by Typers.adapt.

    Definition Classes
    AnnotationCheckers
  299. def captureVariable(vble: Symbol): Unit

    Mark a variable as captured; i.

    Mark a variable as captured; i.e. force boxing in a *Ref type.

    Definition Classes
    CapturedVariables
  300. def capturedVariableType(vble: Symbol, tpe: Type = NoType, erasedTypes: Boolean = false): Type

    Convert type of a captured variable to *Ref type.

    Convert type of a captured variable to *Ref type.

    Definition Classes
    CapturedVariables
  301. def capturedVariableType(vble: Symbol): Type

    Convert type of a captured variable to *Ref type.

    Convert type of a captured variable to *Ref type.

    Definition Classes
    CapturedVariables
  302. def checkKindBounds0(tparams: List[Symbol], targs: List[Type], pre: Type, owner: Symbol, explainErrors: Boolean): List[(Type, Symbol, KindErrors)]

    Check well-kindedness of type application (assumes arities are already checked) -- @M

    Check well-kindedness of type application (assumes arities are already checked) -- @M

    This check is also performed when abstract type members become concrete (aka a "type alias") -- then tparams.length==1 (checked one type member at a time -- in that case, prefix is the name of the type alias)

    Type application is just like value application: it's "contravariant" in the sense that the type parameters of the supplied type arguments must conform to the type parameters of the required type parameters:

    • their bounds must be less strict
    • variances must match (here, variances are absolute, the variance of a type parameter does not influence the variance of its higher-order parameters)
    • @M TODO: are these conditions correct,sufficient&necessary?

    e.g. class Iterable[t, m[+x <: t]] --> the application Iterable[Int, List] is okay, since List's type parameter is also covariant and its bounds are weaker than <: Int

    Definition Classes
    Kinds
  303. var chrs: Array[Char]

    Memory to store all names sequentially.

    Memory to store all names sequentially.

    Definition Classes
    Names
  304. def clone(): AnyRef

    Create a copy of the receiver object.

    Create a copy of the receiver object.

    The default implementation of the clone method is platform dependent.

    returns

    a copy of the receiver object.

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  305. def cloneSymbols(syms: List[Symbol]): List[Symbol]

    Convenience functions which derive symbols by cloning.

    Convenience functions which derive symbols by cloning.

    Definition Classes
    Symbols
  306. def cloneSymbolsAndModify(syms: List[Symbol], infoFn: (Type) ⇒ Type): List[Symbol]

    Clone symbols and apply the given function to each new symbol's info.

    Clone symbols and apply the given function to each new symbol's info.

    syms

    the prototypical symbols

    infoFn

    the function to apply to the infos

    returns

    the newly created, info-adjusted symbols

    Definition Classes
    Symbols
  307. def cloneSymbolsAtOwner(syms: List[Symbol], owner: Symbol): List[Symbol]

    Definition Classes
    Symbols
  308. def cloneSymbolsAtOwnerAndModify(syms: List[Symbol], owner: Symbol, infoFn: (Type) ⇒ Type): List[Symbol]

    Definition Classes
    Symbols
  309. final def collectMap2[A, B, C](xs1: List[A], xs2: List[B])(p: (A, B) ⇒ Boolean): Map[A, B]

    Definition Classes
    Collections
  310. def commonOwnerMap: CommonOwnerMap

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  311. final def compareLengths(xs1: List[_], xs2: List[_]): Int

    Definition Classes
    Types
    Annotations
    @tailrec()
  312. def compoundBaseTypeSeq(tp: Type): BaseTypeSeq

    Create the base type sequence of a compound type wuth given tp.

    Create the base type sequence of a compound type wuth given tp.parents

    Definition Classes
    BaseTypeSeqs
  313. def connectModuleToClass(m: ModuleSymbol, moduleClass: ClassSymbol): ModuleSymbol

    Definition Classes
    SynchronizedSymbolsSymbols
  314. def containsExistential(tpe: Type): Boolean

    Definition Classes
    Types
  315. def copyClassDef(tree: Tree)(mods: Modifiers = null, name: Name = null, tparams: List[TypeDef] = null, impl: Template = null): ClassDef

    Definition Classes
    Trees
  316. def copyDefDef(tree: Tree)(mods: Modifiers = null, name: Name = null, tparams: List[TypeDef] = null, vparamss: List[List[ValDef]] = null, tpt: Tree = null, rhs: Tree = null): DefDef

    Definition Classes
    Trees
  317. def copyMethodType(tp: Type, params: List[Symbol], restpe: Type): Type

    Create a new MethodType of the same class as tp, i.

    Create a new MethodType of the same class as tp, i.e. keep JavaMethodType

    Definition Classes
    Types
  318. def copyRefinedType(original: RefinedType, parents: List[Type], decls: Scope): Type

    Definition Classes
    Types
  319. def copyTypeRef(tp: Type, pre: Type, sym: Symbol, args: List[Type]): Type

    Definition Classes
    Types
  320. def copyValDef(tree: Tree)(mods: Modifiers = null, name: Name = null, tpt: Tree = null, rhs: Tree = null): ValDef

    Definition Classes
    Trees
  321. final def corresponds3[A, B, C](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) ⇒ Boolean): Boolean

    True if all three arguments have the same number of elements and the function is true for all the triples.

    True if all three arguments have the same number of elements and the function is true for all the triples.

    Definition Classes
    Collections
    Annotations
    @tailrec()
  322. def createClassModule(owner: Symbol, name: TypeName, completer: (Symbol, Symbol) ⇒ LazyType): (ClassSymbol, ModuleSymbol)

    Create a class and a companion object, enter in enclosing scope, and initialize with a lazy type completer.

    Create a class and a companion object, enter in enclosing scope, and initialize with a lazy type completer.

    owner

    The owner of the newly created class and object

    name

    The simple name of the newly created class

    completer

    The completer to be used to set the info of the class and the module

    Attributes
    protected
    Definition Classes
    SymbolLoaders
  323. def createFromClonedSymbols[T](syms: List[Symbol], tpe: Type)(creator: (List[Symbol], Type) ⇒ T): T

    Functions which perform the standard clone/substituting on the given symbols and type, then call the creator function with the new symbols and type as arguments.

    Functions which perform the standard clone/substituting on the given symbols and type, then call the creator function with the new symbols and type as arguments.

    Definition Classes
    Symbols
  324. def createFromClonedSymbolsAtOwner[T](syms: List[Symbol], owner: Symbol, tpe: Type)(creator: (List[Symbol], Type) ⇒ T): T

    Definition Classes
    Symbols
  325. final def currentPeriod: Period

    The current period.

    The current period.

    Definition Classes
    SymbolTable
  326. object deAlias extends TypeMap

    Remove any occurrences of type aliases from this type

  327. def debugInfo(msg: ⇒ String): Unit

  328. def debugStack(t: Throwable): Unit

    Prints a stack trace if -Ydebug or equivalent was given, otherwise does nothing.

    Prints a stack trace if -Ydebug or equivalent was given, otherwise does nothing.

    Definition Classes
    SymbolTable
  329. def debugString(tp: Type): String

    Definition Classes
    TypeDebugging
  330. def debuglog(msg: ⇒ String): Unit

    Override with final implementation for inlining.

    Override with final implementation for inlining.

    Definition Classes
    SymbolTable
  331. def debugwarn(msg: ⇒ String): Unit

    Definition Classes
    SymbolTable
  332. def decodedSymName(tree: Tree, name: Name): String

    Definition Classes
    Printers
  333. def defineBaseClassesOfCompoundType(tpe: CompoundType): Unit

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  334. def defineBaseTypeSeqOfCompoundType(tpe: CompoundType): Unit

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  335. def defineBaseTypeSeqOfTypeRef(tpe: TypeRef): Unit

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  336. def defineParentsOfTypeRef(tpe: TypeRef): Unit

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  337. def defineUnderlyingOfSingleType(tpe: SingleType): Unit

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  338. object definitions extends DefinitionsClass

  339. def deriveCaseDef(cdef: Tree)(applyToBody: (Tree) ⇒ Tree): CaseDef

    Definition Classes
    Trees
  340. def deriveClassDef(cdef: Tree)(applyToImpl: (Template) ⇒ Template): ClassDef

    Definition Classes
    Trees
  341. def deriveDefDef(ddef: Tree)(applyToRhs: (Tree) ⇒ Tree): DefDef

    Definition Classes
    Trees
  342. def deriveFreshSkolems(tparams: List[Symbol]): List[Symbol]

    Map a list of type parameter symbols to skolemized symbols, which can be deskolemized to the original type parameter.

    Map a list of type parameter symbols to skolemized symbols, which can be deskolemized to the original type parameter. (A skolem is a representation of a bound variable when viewed inside its scope.) !!!Adriaan: this does not work for hk types.

    Definition Classes
    ExistentialsAndSkolems
  343. def deriveLabelDef(ldef: Tree)(applyToRhs: (Tree) ⇒ Tree): LabelDef

    Definition Classes
    Trees
  344. def deriveModuleDef(mdef: Tree)(applyToImpl: (Template) ⇒ Template): ModuleDef

    Definition Classes
    Trees
  345. def deriveSymbols(syms: List[Symbol], symFn: (Symbol) ⇒ Symbol): List[Symbol]

    Derives a new list of symbols from the given list by mapping the given list across the given function.

    Derives a new list of symbols from the given list by mapping the given list across the given function. Then fixes the info of all the new symbols by substituting the new symbols for the original symbols.

    syms

    the prototypical symbols

    symFn

    the function to create new symbols

    returns

    the new list of info-adjusted symbols

    Definition Classes
    Symbols
  346. def deriveTemplate(templ: Tree)(applyToBody: (List[Tree]) ⇒ List[Tree]): Template

    Definition Classes
    Trees
  347. def deriveType(syms: List[Symbol], symFn: (Symbol) ⇒ Symbol)(tpe: Type): Type

    Derives a new Type by first deriving new symbols as in deriveSymbols, then performing the same oldSyms => newSyms substitution on tpe as is performed on the symbol infos in deriveSymbols.

    Derives a new Type by first deriving new symbols as in deriveSymbols, then performing the same oldSyms => newSyms substitution on tpe as is performed on the symbol infos in deriveSymbols.

    syms

    the prototypical symbols

    symFn

    the function to create new symbols

    tpe

    the prototypical type

    returns

    the new symbol-subsituted type

    Definition Classes
    Symbols
  348. def deriveTypeWithWildcards(syms: List[Symbol])(tpe: Type): Type

    Derives a new Type by instantiating the given list of symbols as WildcardTypes.

    Derives a new Type by instantiating the given list of symbols as WildcardTypes.

    syms

    the symbols to replace

    returns

    the new type with WildcardType replacing those syms

    Definition Classes
    Symbols
  349. def deriveValDef(vdef: Tree)(applyToRhs: (Tree) ⇒ Tree): ValDef

    Definition Classes
    Trees
  350. def deskolemizeTypeParams(tparams: List[Symbol])(tp: Type): Type

    Convert to corresponding type parameters all skolems of method parameters which appear in tparams.

    Convert to corresponding type parameters all skolems of method parameters which appear in tparams.

    Definition Classes
    ExistentialsAndSkolems
  351. def differentOrNone(tp1: Type, tp2: Type): Type

    Definition Classes
    Types
  352. final def distinctBy[A, B](xs: List[A])(f: (A) ⇒ B): List[A]

    Definition Classes
    Collections
  353. object dropAllRefinements extends TypeMap

    Substitutes the empty scope for any non-empty decls in the type.

  354. object dropRepeatedParamType extends TypeMap

    Definition Classes
    Types
  355. object dropSingletonType extends TypeMap

    Remove any occurrence of type <singleton> from this type and its parents

  356. def elimAnonymousClass(t: Type): Type

    Definition Classes
    Types
  357. def elimRefinement(t: Type): Type

    Definition Classes
    Types
  358. val emptySymbolArray: Array[Symbol]

    Definition Classes
    Symbols
  359. object emptyValDef extends ValDef

    An empty deferred value definition corresponding to: val _: _ This is used as a placeholder in the self parameter Template if there is no definition of a self value of self type.

  360. val enableTypeVarExperimentals: Boolean

    Attributes
    protected
    Definition Classes
    Types
  361. def encode(str: String): TermName

    Definition Classes
    StdNames
  362. def ensureNonOverlapping(tree: Tree, others: List[Tree]): Unit

    Ensure that given tree has no positions that overlap with any of the positions of others.

    Ensure that given tree has no positions that overlap with any of the positions of others. This is done by shortening the range or assigning TransparentPositions to some of the nodes in tree.

    Definition Classes
    Positions
  363. def ensuring(cond: (SymbolTable) ⇒ Boolean, msg: ⇒ Any): SymbolTable

    Implicit information
    This member is added by an implicit conversion from SymbolTable to Ensuring[SymbolTable] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  364. def ensuring(cond: (SymbolTable) ⇒ Boolean): SymbolTable

    Implicit information
    This member is added by an implicit conversion from SymbolTable to Ensuring[SymbolTable] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  365. def ensuring(cond: Boolean, msg: ⇒ Any): SymbolTable

    Implicit information
    This member is added by an implicit conversion from SymbolTable to Ensuring[SymbolTable] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  366. def ensuring(cond: Boolean): SymbolTable

    Implicit information
    This member is added by an implicit conversion from SymbolTable to Ensuring[SymbolTable] performed by method any2Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  367. final def eq(arg0: AnyRef): Boolean

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    Tests whether the argument (arg0) is a reference to the receiver object (this).

    The eq method implements an equivalence relation on non-null instances of AnyRef, and has three additional properties:

    • It is consistent: for any non-null instances x and y of type AnyRef, multiple invocations of x.eq(y) consistently returns true or consistently returns false.
    • For any non-null instance x of type AnyRef, x.eq(null) and null.eq(x) returns false.
    • null.eq(null) returns true.

    When overriding the equals or hashCode methods, it is important to ensure that their behavior is consistent with reference equality. Therefore, if two objects are references to each other (o1 eq o2), they should be equal to each other (o1 == o2) and they should hash to the same value (o1.hashCode == o2.hashCode).

    returns

    true if the argument is a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  368. def equals(arg0: Any): Boolean

    The equality method for reference types.

    The equality method for reference types. Default implementation delegates to eq.

    See also equals in Any.

    returns

    true if the receiver object is equivalent to the argument; false otherwise.

    Definition Classes
    AnyRef → Any
  369. def erasure: Erasure { val global: SymbolTable.this.type }

    Definition Classes
    Transforms
  370. def etaExpandKeepsStar: Boolean

    Attributes
    protected
    Definition Classes
    Types
  371. def existentialAbstraction(tparams: List[Symbol], tpe0: Type): Type

    A creator for existential types.

    A creator for existential types. This generates:

    tpe1 where { tparams }

    where tpe1 is the result of extrapolating tpe wrt to tparams. Extrapolating means that type variables in tparams occurring in covariant positions are replaced by upper bounds, (minus any SingletonClass markers), type variables in tparams occurring in contravariant positions are replaced by upper bounds, provided the resulting type is legal wrt to stability, and does not contain any type variable in tparams.

    The abstraction drops all type parameters that are not directly or indirectly referenced by type tpe1. If there are no remaining type parameters, simply returns result type tpe.

    Definition Classes
    TypesTypes
  372. def existentialsInType(tpe: Type): List[Symbol]

    Definition Classes
    Types
  373. final def exists2[A, B](xs1: List[A], xs2: List[B])(f: (A, B) ⇒ Boolean): Boolean

    Definition Classes
    Collections
  374. def explain[T](op: String, p: (Type, T) ⇒ Boolean, tp1: Type, arg2: T): Boolean

    Perform operation p on arguments tp1, arg2 and print trace of computation.

    Perform operation p on arguments tp1, arg2 and print trace of computation.

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  375. def explainTypes(op: (Type, Type) ⇒ Any, found: Type, required: Type): Unit

    If option explaintypes is set, print a subtype trace for op(found, required).

    If option explaintypes is set, print a subtype trace for op(found, required).

    Definition Classes
    Types
  376. def explainTypes(found: Type, required: Type): Unit

    If option explaintypes is set, print a subtype trace for found <:< required.

    If option explaintypes is set, print a subtype trace for found <:< required.

    Definition Classes
    Types
  377. def finalize(): Unit

    Called by the garbage collector on the receiver object when there are no more references to the object.

    Called by the garbage collector on the receiver object when there are no more references to the object.

    The details of when and if the finalize method is invoked, as well as the interaction between finalize and non-local returns and exceptions, are all platform dependent.

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
    Note

    not specified by SLS as a member of AnyRef

  378. final def findOrElse[A](xs: TraversableOnce[A])(p: (A) ⇒ Boolean)(orElse: ⇒ A): A

    Definition Classes
    Collections
  379. def findRecursiveBounds(ts: List[Type]): List[(Symbol, Symbol)]

    From a list of types, find any which take type parameters where the type parameter bounds contain references to other any types in the list (including itself.

    From a list of types, find any which take type parameters where the type parameter bounds contain references to other any types in the list (including itself.)

    returns

    List of symbol pairs holding the recursive type parameter and the parameter which references it.

    Definition Classes
    Types
  380. final def flatCollect[A, B](elems: List[A])(pf: PartialFunction[A, Traversable[B]]): List[B]

    Definition Classes
    Collections
  381. final def flatMap2[A, B, C](xs1: List[A], xs2: List[B])(f: (A, B) ⇒ List[C]): List[C]

    Definition Classes
    Collections
  382. final def flattensToEmpty(xss: Seq[Seq[_]]): Boolean

    Definition Classes
    Collections
    Annotations
    @tailrec()
  383. def forMSIL: Boolean

    Are we compiling for .

    Are we compiling for .NET?

    Definition Classes
    SymbolTable
  384. final def forall2[A, B](xs1: List[A], xs2: List[B])(f: (A, B) ⇒ Boolean): Boolean

    Definition Classes
    Collections
  385. final def forall3[A, B, C](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) ⇒ Boolean): Boolean

    Definition Classes
    Collections
  386. final def foreach2[A, B](xs1: List[A], xs2: List[B])(f: (A, B) ⇒ Unit): Unit

    Definition Classes
    Collections
  387. final def foreach3[A, B, C](xs1: List[A], xs2: List[B], xs3: List[C])(f: (A, B, C) ⇒ Unit): Unit

    Definition Classes
    Collections
  388. final def foreachWithIndex[A, B](xs: List[A])(f: (A, Int) ⇒ Unit): Unit

    Definition Classes
    Collections
  389. def formatted(fmtstr: String): String

    Returns string formatted according to given format string.

    Returns string formatted according to given format string. Format strings are as for String.format (@see java.lang.String.format).

    Implicit information
    This member is added by an implicit conversion from SymbolTable to StringFormat performed by method any2stringfmt in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  390. def freshExistentialName(suffix: String): TypeName

    Attributes
    protected
    Definition Classes
    SynchronizedSymbolsSymbols
  391. def fromDeBruijn(owner: Symbol): TypeMap

    Definition Classes
    Types
  392. object fulltpnme extends TypeNames

    For fully qualified type names.

  393. val gen: TreeGen { val global: SymbolTable.this.type }

    Definition Classes
    SymbolTable
  394. def genPolyType(params: List[Symbol], tpe: Type): Type

    Definition Classes
    Types
  395. final def getClass(): Class[_]

    A representation that corresponds to the dynamic class of the receiver object.

    A representation that corresponds to the dynamic class of the receiver object.

    The nature of the representation is platform dependent.

    returns

    a representation that corresponds to the dynamic class of the receiver object.

    Definition Classes
    AnyRef → Any
    Note

    not specified by SLS as a member of AnyRef

  396. def glb(ts: List[Type]): Type

    The greatest lower bound wrt <:< of a list of types

    The greatest lower bound wrt <:< of a list of types

    Definition Classes
    SynchronizedTypesTypesTypes
  397. def glbNorm(ts: List[Type], depth: Int): Type

    The greatest lower bound wrt <:< of a list of types, which have been normalized wrt elimSuper

    The greatest lower bound wrt <:< of a list of types, which have been normalized wrt elimSuper

    Attributes
    protected
    Definition Classes
    Types
  398. final def hasLength(xs: List[_], len: Int): Boolean

    Again avoiding calling length, but the lengthCompare interface is clunky.

    Again avoiding calling length, but the lengthCompare interface is clunky.

    Definition Classes
    Types
  399. def hashCode(): Int

    The hashCode method for reference types.

    The hashCode method for reference types. See hashCode in Any.

    returns

    the hash code value for this object.

    Definition Classes
    AnyRef → Any
  400. var ids: Int

    Attributes
    protected
    Definition Classes
    Symbols
  401. def info(msg: ⇒ String): Unit

  402. var infoTransformers: InfoTransformer

    The set of all installed infotransformers.

    The set of all installed infotransformers.

    Definition Classes
    SymbolTable
  403. def init(): Unit

    Definition Classes
    JavaMirrors
  404. def initClassModule(clazz: Symbol, module: Symbol, completer: LazyType): Unit

    Attributes
    protected
    Definition Classes
    SymbolLoaders
  405. def instTypeVar(tp: Type): Type

    Definition Classes
    Types
  406. def instantiatedBounds(pre: Type, owner: Symbol, tparams: List[Symbol], targs: List[Type]): List[TypeBounds]

    Definition Classes
    Types
  407. def intersectionType(tps: List[Type]): Type

    A creator for intersection type where intersections of a single type are replaced by the type itself.

    A creator for intersection type where intersections of a single type are replaced by the type itself.

    Definition Classes
    TypesTypes
  408. def intersectionType(tps: List[Type], owner: Symbol): Type

    A creator for intersection type where intersections of a single type are replaced by the type itself, and repeated parent classes are merged.

    A creator for intersection type where intersections of a single type are replaced by the type itself, and repeated parent classes are merged.

    !!! Repeated parent classes are not merged - is this a bug in the comment or in the code?

    Definition Classes
    TypesTypes
  409. val intersectionWitness: WeakHashMap[List[Type], WeakReference[Type]]

    A map from lists to compound types that have the given list as parents.

    A map from lists to compound types that have the given list as parents. This is used to avoid duplication in the computation of base type sequences and baseClasses. It makes use of the fact that these two operations depend only on the parents, not on the refinement.

    Definition Classes
    Types
  410. final def isAtPhaseAfter(p: Phase): Boolean

    Are we later than given phase in compilation?

    Are we later than given phase in compilation?

    Definition Classes
    SymbolTable
  411. def isBoundedGeneric(tp: Type): Boolean

    Definition Classes
    Types
  412. def isCompilerUniverse: Boolean

    Is this symbol table a part of a compiler universe?

    Is this symbol table a part of a compiler universe?

    Definition Classes
    SymbolTable
  413. def isConstantType(tp: Type): Boolean

    Definition Classes
    Types
  414. def isDifferentType(tp1: Type, tp2: Type): Boolean

    Definition Classes
    SynchronizedTypesTypes
  415. def isDifferentTypeConstructor(tp1: Type, tp2: Type): Boolean

    Definition Classes
    Types
  416. def isErrorOrWildcard(tp: Type): Boolean

    Definition Classes
    Types
  417. def isHKSubType0(tp1: Type, tp2: Type, depth: Int): Boolean

    Definition Classes
    Types
  418. final def isInstanceOf[T0]: Boolean

    Test whether the dynamic type of the receiver object is T0.

    Test whether the dynamic type of the receiver object is T0.

    Note that the result of the test is modulo Scala's erasure semantics. Therefore the expression 1.isInstanceOf[String] will return false, while the expression List(1).isInstanceOf[List[String]] will return true. In the latter example, because the type argument is erased as part of compilation it is not possible to check whether the contents of the list are of the specified type.

    returns

    true if the receiver object is an instance of erasure of type T0; false otherwise.

    Definition Classes
    Any
  419. def isInvalidClassName(name: Name): Boolean

    Is the given name valid for a top-level class? We exclude names with embedded $-signs, because these are nested classes or anonymous classes,

    Is the given name valid for a top-level class? We exclude names with embedded $-signs, because these are nested classes or anonymous classes,

    Definition Classes
    SymbolLoaders
  420. def isNumericSubType(tp1: Type, tp2: Type): Boolean

    The isNumericValueType tests appear redundant, but without them test/continuations-neg/function3.

    The isNumericValueType tests appear redundant, but without them test/continuations-neg/function3.scala goes into an infinite loop. (Even if the calls are to typeSymbolDirect.)

    Definition Classes
    Types
  421. def isPopulated(tp1: Type, tp2: Type): Boolean

    Is intersection of given types populated? That is, for all types tp1, tp2 in intersection for all common base classes bc of tp1 and tp2 let bt1, bt2 be the base types of tp1, tp2 relative to class bc Then: bt1 and bt2 have the same prefix, and any corresponding non-variant type arguments of bt1 and bt2 are the same

    Is intersection of given types populated? That is, for all types tp1, tp2 in intersection for all common base classes bc of tp1 and tp2 let bt1, bt2 be the base types of tp1, tp2 relative to class bc Then: bt1 and bt2 have the same prefix, and any corresponding non-variant type arguments of bt1 and bt2 are the same

    Definition Classes
    Types
  422. def isRaw(sym: Symbol, args: List[Type]): Boolean

    Definition Classes
    Types
  423. def isRawType(tp: Type): Boolean

    Is type tp a raw type?

    Is type tp a raw type?

    Definition Classes
    Types
  424. def isReferenceToAnyVal(t: Tree): Boolean

    Definition Classes
    Trees
  425. def isReferenceToPredef(t: Tree): Boolean

    Is the tree Predef, scala.

    Is the tree Predef, scala.Predef, or _root_.scala.Predef?

    Definition Classes
    Trees
  426. def isReferenceToScalaMember(t: Tree, Id: Name): Boolean

    Definition Classes
    Trees
  427. def isSameType(tp1: Type, tp2: Type): Boolean

    Do tp1 and tp2 denote equivalent types?

    Do tp1 and tp2 denote equivalent types?

    Definition Classes
    SynchronizedTypesTypes
  428. def isSameType2(tp1: Type, tp2: Type): Boolean

    Definition Classes
    Types
  429. def isSameTypes(tps1: List[Type], tps2: List[Type]): Boolean

    Are tps1 and tps2 lists of pairwise equivalent types?

    Are tps1 and tps2 lists of pairwise equivalent types?

    Definition Classes
    Types
  430. def isSingleType(tp: Type): Boolean

    Definition Classes
    Types
  431. def isSubArgs(tps1: List[Type], tps2: List[Type], tparams: List[Symbol], depth: Int): Boolean

    Definition Classes
    Types
  432. def isSubType(tp1: Type, tp2: Type, depth: Int): Boolean

    Definition Classes
    SynchronizedTypesTypes
  433. def isSubType(tp1: Type, tp2: Type): Boolean

    Definition Classes
    Types
  434. def isSubTypes(tps1: List[Type], tps2: List[Type]): Boolean

    Are tps1 and tps2 lists of equal length such that all elements of tps1 conform to corresponding elements of tps2?

    Are tps1 and tps2 lists of equal length such that all elements of tps1 conform to corresponding elements of tps2?

    Definition Classes
    Types
  435. def isUnboundedGeneric(tp: Type): Boolean

    Definition Classes
    Types
  436. final def isValid(period: Period): Boolean

    Definition Classes
    SymbolTable
  437. final def isValidForBaseClasses(period: Period): Boolean

    Definition Classes
    SymbolTable
  438. def isWeakSubType(tp1: Type, tp2: Type): Boolean

    Definition Classes
    Types
  439. def isWithinBounds(pre: Type, owner: Symbol, tparams: List[Symbol], targs: List[Type]): Boolean

    Do type arguments targs conform to formal parameters tparams?

    Do type arguments targs conform to formal parameters tparams?

    Definition Classes
    Types
  440. def itransform(transformer: Transformer, tree: Tree): Tree

    Attributes
    protected
    Definition Classes
    TreesTrees
  441. def itraverse(traverser: Traverser, tree: Tree): Unit

    Attributes
    protected
    Definition Classes
    TreesTrees
  442. val javanme: JavaKeywords

    Definition Classes
    StdNames
  443. def kindsConform(tparams: List[Symbol], targs: List[Type], pre: Type, owner: Symbol): Boolean

    Definition Classes
    Kinds
  444. implicit def lowPriorityNameOrdering[T <: Name]: Ordering[T]

    Definition Classes
    SymbolTable
  445. implicit def lowerTermNames(n: TermName): String

    Definition Classes
    StdNames
  446. def lub(ts: List[Type]): Type

    The least upper bound of a list of types, as determined by <:<.

    The least upper bound of a list of types, as determined by <:<.

    Definition Classes
    SynchronizedTypesTypesTypes
  447. def lubDepth(ts: List[Type]): Int

    The maximum allowable depth of lubs or glbs over types ts.

    The maximum allowable depth of lubs or glbs over types ts.

    Definition Classes
    Types
  448. def makeNoSymbol: NoSymbol

    Attributes
    protected
    Definition Classes
    SynchronizedSymbolsSymbols
  449. def manifestToTypeTag[T](mirror0: Any, manifest: Manifest[T]): TypeTag[T]

    Definition Classes
    TagInterop
  450. final def map2[A, B, C](xs1: List[A], xs2: List[B])(f: (A, B) ⇒ C): List[C]

    Definition Classes
    Collections
  451. def map2Conserve[A <: AnyRef, B](xs: List[A], ys: List[B])(f: (A, B) ⇒ A): List[A]

    like map2, but returns list xs itself - instead of a copy - if function f maps all elements to themselves.

    like map2, but returns list xs itself - instead of a copy - if function f maps all elements to themselves.

    Definition Classes
    Types
  452. 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
  453. final def mapFrom[A, A1 >: A, B](xs: List[A])(f: (A) ⇒ B): Map[A1, B]

    Definition Classes
    Collections
  454. def mapParamss[T](sym: Symbol)(f: (Symbol) ⇒ T): List[List[T]]

    A deep map on a symbol's paramss.

    A deep map on a symbol's paramss.

    Definition Classes
    Symbols
  455. final def mapWithIndex[A, B](xs: List[A])(f: (A, Int) ⇒ B): List[B]

    Definition Classes
    Collections
  456. final def matchesType(tp1: Type, tp2: Type, alwaysMatchSimple: Boolean): Boolean

    A function implementing tp1 matches tp2.

    A function implementing tp1 matches tp2.

    Definition Classes
    Types
  457. final val maxTostringRecursions: Int(50)

    The maximum number of recursions allowed in toString

    The maximum number of recursions allowed in toString

    Definition Classes
    Types
  458. def mergePrefixAndArgs(tps: List[Type], variance: Int, depth: Int): Option[Type]

    Compute lub (if variance == 1) or glb (if variance == -1) of given list of types tps.

    Compute lub (if variance == 1) or glb (if variance == -1) of given list of types tps. All types in tps are typerefs or singletypes with the same symbol. Return Some(x) if the computation succeeds with result x. Return None if the computation fails.

    Definition Classes
    Types
  459. final def mexists[A](xss: List[List[A]])(p: (A) ⇒ Boolean): Boolean

    All these mm methods are "deep map" style methods for mapping etc.

    All these mm methods are "deep map" style methods for mapping etc. on a list of lists while avoiding unnecessary intermediate structures like those created via flatten.

    Definition Classes
    Collections
  460. final def mfilter[A](xss: List[List[A]])(p: (A) ⇒ Boolean): List[A]

    Definition Classes
    Collections
  461. final def mfind[A](xss: List[List[A]])(p: (A) ⇒ Boolean): Option[A]

    Definition Classes
    Collections
  462. final def mforall[A](xss: List[List[A]])(p: (A) ⇒ Boolean): Boolean

    Definition Classes
    Collections
  463. final def mforeach[A](xss: List[List[A]])(f: (A) ⇒ Unit): Unit

    Definition Classes
    Collections
  464. def mirrorThatLoaded(sym: Symbol): Mirror

    Returns the mirror that loaded given symbol

    Returns the mirror that loaded given symbol

    Definition Classes
    JavaMirrorsSymbolTable
  465. val missingAliasException: MissingAliasControl

    Definition Classes
    Types
  466. def missingHook(owner: Symbol, name: Name): Symbol

    1.

    1. If owner is a package class (but not the empty package) and name is a term name, make a new package <owner>.<name>, otherwise return NoSymbol. Exception: If owner is root and a java class with given name exists, create symbol in empty package instead 2. If owner is the scala package and name designates a phantom class, return the corresponding class symbol and enter it into this mirror's ScalaPackage.

    Definition Classes
    JavaMirrorsSymbolTable
  467. def mkImporter(from0: Universe): Importer { val from: from0.type }

    Definition Classes
    Importers
  468. final def mmap[A, B](xss: List[List[A]])(f: (A) ⇒ B): List[List[B]]

    Definition Classes
    Collections
  469. def nameChars: Array[Char]

    Definition Classes
    Names
  470. final val nameDebug: Boolean(false)

    Definition Classes
    Names
  471. final def ne(arg0: AnyRef): Boolean

    Equivalent to !(this eq that).

    Equivalent to !(this eq that).

    returns

    true if the argument is not a reference to the receiver object; false otherwise.

    Definition Classes
    AnyRef
  472. def needsOuterTest(patType: Type, selType: Type, currentOwner: Symbol): Boolean

    Does a pattern of type patType need an outer test when executed against selector type selType in context defined by currentOwner?

    Does a pattern of type patType need an outer test when executed against selector type selType in context defined by currentOwner?

    Definition Classes
    Types
  473. def newBaseTypeSeq(parents: List[Type], elems: Array[Type]): BaseTypeSeq with SynchronizedBaseTypeSeq

    Attributes
    protected
    Definition Classes
    SynchronizedOpsBaseTypeSeqs
  474. def newExistentialType(quantified: List[Symbol], underlying: Type): Type

    A creator for existential types which flattens nested existentials.

    A creator for existential types which flattens nested existentials.

    Definition Classes
    Types
  475. def newFreeTermSymbol(name: TermName, info: Type, value: ⇒ Any, flags: Long = 0L, origin: String = null): FreeTermSymbol

    Create a new free term.

    Create a new free term. Its owner is NoSymbol.

    Definition Classes
    SynchronizedSymbolsSymbols
  476. def newFreeTypeSymbol(name: TypeName, info: Type, value: ⇒ Any, flags: Long = 0L, origin: String = null): FreeTypeSymbol

    Create a new free type.

    Create a new free type. Its owner is NoSymbol.

    Definition Classes
    SynchronizedSymbolsSymbols
  477. def newNestedScope(outer: Scope): Scope

    Create a new scope nested in another one with which it shares its elements

    Create a new scope nested in another one with which it shares its elements

    Definition Classes
    SynchronizedOpsScopesScopes
  478. def newPackageScope(pkgClass: Symbol): PackageScope

    Definition Classes
    SymbolLoaders
  479. def newRawTreePrinter(): RawTreePrinter

    Definition Classes
    Printers
  480. def newRawTreePrinter(stream: OutputStream): RawTreePrinter

    Definition Classes
    Printers
  481. def newRawTreePrinter(writer: PrintWriter): RawTreePrinter

    Hook to define what showRaw(...) means.

    Hook to define what showRaw(...) means.

    Definition Classes
    PrintersPrinters
  482. def newScope: Scope with SynchronizedScope

    Create a new scope

    Create a new scope

    Definition Classes
    SynchronizedOpsScopesScopes
  483. def newScopeWith(elems: Symbol*): Scope

    Create a new scope with given initial elements

    Create a new scope with given initial elements

    Definition Classes
    ScopesScopes
  484. def newTermName(s: String): TermName

    Create a term name from string.

    Create a term name from string.

    Definition Classes
    SynchronizedOpsNamesNames
  485. def newTermName(bs: Array[Byte], offset: Int, len: Int): TermName

    Create a term name from the UTF8 encoded bytes in bs[offset.

    Create a term name from the UTF8 encoded bytes in bs[offset..offset+len-1].

    Definition Classes
    Names
  486. def newTermName(cs: Array[Char], offset: Int, len: Int, cachedString: String): TermName

    Create a term name from the characters in cs[offset.

    Create a term name from the characters in cs[offset..offset+len-1]. TODO - have a mode where name validation is performed at creation time (e.g. if a name has the string "$class" in it, then fail if that string is not at the very end.)

    Attributes
    protected
    Definition Classes
    Names
  487. def newTermName(cs: Array[Char]): TermName

    Definition Classes
    Names
  488. def newTermName(cs: Array[Char], offset: Int, len: Int): TermName

    Create a term name from the characters in cs[offset.

    Create a term name from the characters in cs[offset..offset+len-1].

    Definition Classes
    Names
  489. def newTermNameCached(s: String): TermName

    Definition Classes
    Names
  490. def newTreePrinter(): TreePrinter

    Definition Classes
    Printers
  491. def newTreePrinter(stream: OutputStream): TreePrinter

    Definition Classes
    Printers
  492. def newTreePrinter(writer: PrintWriter): TreePrinter

    Hook to define what show(...) means.

    Hook to define what show(...) means.

    Definition Classes
    PrintersPrinters
  493. def newTypeName(s: String): TypeName

    Create a type name from string.

    Create a type name from string.

    Definition Classes
    SynchronizedOpsNamesNames
  494. def newTypeName(bs: Array[Byte], offset: Int, len: Int): TypeName

    Create a type name from the UTF8 encoded bytes in bs[offset.

    Create a type name from the UTF8 encoded bytes in bs[offset..offset+len-1].

    Definition Classes
    Names
  495. def newTypeName(cs: Array[Char], offset: Int, len: Int): TypeName

    Create a type name from the characters in cs[offset.

    Create a type name from the characters in cs[offset..offset+len-1].

    Definition Classes
    Names
  496. def newTypeName(cs: Array[Char], offset: Int, len: Int, cachedString: String): TypeName

    Attributes
    protected
    Definition Classes
    Names
  497. def newTypeName(cs: Array[Char]): TypeName

    Definition Classes
    Names
  498. def newTypeNameCached(s: String): TypeName

    Definition Classes
    Names
  499. def newUndoLog: SynchronizedUndoLog

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  500. def nextId(): Int

    Attributes
    protected
    Definition Classes
    SynchronizedSymbolsSymbols
  501. object nme extends TermNames

    Definition Classes
    StdNames
  502. def normalizePlus(tp: Type): Type

    Definition Classes
    Types
  503. final def notify(): Unit

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Wakes up a single thread that is waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  504. final def notifyAll(): Unit

    Wakes up all threads that are waiting on the receiver object's monitor.

    Wakes up all threads that are waiting on the receiver object's monitor.

    Definition Classes
    AnyRef
    Note

    not specified by SLS as a member of AnyRef

  505. def numericGlb(ts: List[Type]): Type

    Definition Classes
    Types
  506. def numericLub(ts: List[Type]): Type

    Definition Classes
    Types
  507. def objToAny(tp: Type): Type

    Definition Classes
    Types
  508. def openPackageModule(pkgClass: Symbol): Unit

    if there's a package member object in pkgClass, enter its members into it.

    if there's a package member object in pkgClass, enter its members into it.

    Definition Classes
    SymbolTable
  509. def openPackageModule(container: Symbol, dest: Symbol): Unit

    Definition Classes
    SymbolTable
  510. val originalOwner: HashMap[Symbol, Symbol]

    The original owner of a class.

    The original owner of a class. Used by the backend to generate EnclosingMethod attributes.

    Definition Classes
    Symbols
  511. def overloadedType(pre: Type, alternatives: List[Symbol]): Type

    Definition Classes
    Types
  512. def paramString(tp: Type): String

    Definition Classes
    TypeDebugging
  513. object perRunCaches

    Definition Classes
    SymbolTable
  514. final def period(rid: RunId, pid: Int): Period

    Definition Classes
    SymbolTable
  515. var phStack: List[Phase]

    Definition Classes
    SymbolTable
  516. final def phase: Phase

    Definition Classes
    SymbolTable
  517. final def phaseId(period: Period): Int

    The phase identifier of the given period.

    The phase identifier of the given period.

    Definition Classes
    SymbolTable
  518. final def phaseOf(period: Period): Phase

    The phase associated with given period.

    The phase associated with given period.

    Definition Classes
    SymbolTable
  519. final def phase_=(p: Phase): Unit

    Definition Classes
    SymbolTable
  520. final def popPhase(ph: Phase): Unit

    Definition Classes
    SymbolTable
  521. lazy val posAssigner: PosAssigner

    Attributes
    protected[this]
    Definition Classes
    Positions
  522. implicit def promoteTermNamesAsNecessary(name: Name): TermName

    Definition Classes
    Names
  523. final def pushPhase(ph: Phase): Phase

    Definition Classes
    SymbolTable
  524. def quotedName(name: String): String

    Definition Classes
    Printers
  525. def quotedName(name: Name): String

    Definition Classes
    Printers
  526. def quotedName(name: Name, decode: Boolean): String

    Adds backticks if the name is a scala keyword.

    Adds backticks if the name is a scala keyword.

    Definition Classes
    Printers
  527. def rawToExistential: TypeMap

    The raw to existential map converts a raw type to an existential type.

    The raw to existential map converts a raw type to an existential type. It is necessary because we might have read a raw type of a parameterized Java class from a class file. At the time we read the type the corresponding class file might still not be read, so we do not know what the type parameters of the type are. Therefore the conversion of raw types to existential types might not have taken place in ClassFileparser.sigToType (where it is usually done).

    Definition Classes
    Types
  528. def refChecks: RefChecks { val global: SymbolTable.this.type }

    Definition Classes
    Transforms
  529. def referenceCapturedVariable(vble: Symbol): Tree

    Mark given identifier as a reference to a captured variable itself suppressing dereferencing with the elem field.

    Mark given identifier as a reference to a captured variable itself suppressing dereferencing with the elem field.

    Definition Classes
    CapturedVariables
  530. def refinedType(parents: List[Type], owner: Symbol): Type

    The canonical creator for a refined type with an initially empty scope.

    The canonical creator for a refined type with an initially empty scope.

    parents

    ...

    owner

    ...

    returns

    ...

    Definition Classes
    TypesTypes
  531. def refinedType(parents: List[Type], owner: Symbol, decls: Scope, pos: Position): Type

    the canonical creator for a refined type with a given scope

    the canonical creator for a refined type with a given scope

    Definition Classes
    TypesTypes
  532. def reify[T](expr: T): Expr[T]

    Given an expression, generate a tree that when compiled and executed produces the original tree.

    Given an expression, generate a tree that when compiled and executed produces the original tree. The produced tree will be bound to the Universe it was called from.

    For instance, given the abstract syntax tree representation of the <[ x + 1 ]> expression:

    Apply(Select(Ident("x"), "+"), List(Literal(Constant(1))))

    The reifier transforms it to the following expression:

    <[
      val $u: u.type = u // where u is a reference to the Universe that calls the reify
      $u.Expr[Int]($u.Apply($u.Select($u.Ident($u.newFreeVar("x", <Int>, x), "+"), List($u.Literal($u.Constant(1))))))
    ]>

    Reification performs expression splicing (when processing Expr.splice) and type splicing (for every type T that has a TypeTag[T] implicit in scope):

    val two = mirror.reify(2)                         // Literal(Constant(2))
    val four = mirror.reify(two.splice + two.splice)  // Apply(Select(two.tree, newTermName("$plus")), List(two.tree))
    
    def macroImpl[T](c: Context) = {
      ...
      // T here is just a type parameter, so the tree produced by reify won't be of much use in a macro expansion
      // however, if T were annotated with c.TypeTag (which would declare an implicit parameter for macroImpl)
      // then reification would subtitute T with the TypeTree that was used in a TypeApply of this particular macro invocation
      val factory = c.reify{ new Queryable[T] }
      ...
    }

    The transformation looks mostly straightforward, but it has its tricky parts: * Reifier retains symbols and types defined outside the reified tree, however locally defined entities get erased and replaced with their original trees * Free variables are detected and wrapped in symbols of the type FreeVar * Mutable variables that are accessed from a local function are wrapped in refs * Since reified trees can be compiled outside of the scope they've been created in, special measures are taken to ensure that all members accessed in the reifee remain visible

    Definition Classes
    Universe
  533. def removeAllAnnotationCheckers(): Unit

    Remove all annotation checkers

    Remove all annotation checkers

    Definition Classes
    AnnotationCheckers
  534. def render(what: Any, mkPrinter: (PrintWriter) ⇒ TreePrinter, printTypes: BooleanFlag = None, printIds: BooleanFlag = None, printKinds: BooleanFlag = None, printMirrors: BooleanFlag = None): String

    Attributes
    protected
    Definition Classes
    Printers
  535. def repackExistential(tp: Type): Type

    Repack existential types, otherwise they sometimes get unpacked in the wrong location (type inference comes up with an unexpected skolem)

    Repack existential types, otherwise they sometimes get unpacked in the wrong location (type inference comes up with an unexpected skolem)

    Definition Classes
    Types
  536. def rootClassLoader: ClassLoader

    Definition Classes
    JavaMirrors
  537. lazy val rootMirror: Mirror

    Definition Classes
    JavaMirrorsMirrors
  538. final def runId(period: Period): RunId

    The run identifier of the given period.

    The run identifier of the given period.

    Definition Classes
    SymbolTable
  539. def runtimeMirror(cl: ClassLoader): Mirror

    Definition Classes
    JavaMirrorsJavaUniverse
  540. final def sameLength(xs1: List[_], xs2: List[_]): Boolean

    True if two lists have the same length.

    True if two lists have the same length. Since calling length on linear sequences is O(n), it is an inadvisable way to test length equality.

    Definition Classes
    Types
  541. def scopeTransform(owner: Symbol)(op: ⇒ Scope): Scope

    Definition Classes
    SymbolLoaders
  542. def setAllInfos(clazz: Symbol, module: Symbol, info: Type): Unit

    Attributes
    protected
    Definition Classes
    SymbolLoaders
  543. val shorthands: Set[String]

    Definition Classes
    Types
  544. def show(flags: FlagSet): String

    Renders a prettified representation of a flag set.

    Renders a prettified representation of a flag set.

    Definition Classes
    PrintersPrinters
  545. def show(name: Name): String

    Renders a prettified representation of a name.

    Renders a prettified representation of a name.

    Definition Classes
    PrintersPrinters
  546. def show(any: Any, printTypes: BooleanFlag = None, printIds: BooleanFlag = None, printKinds: BooleanFlag = None, printMirrors: BooleanFlag = None): String

    Renders a prettified representation of a reflection artifact.

    Renders a prettified representation of a reflection artifact. Typically it looks very close to the Scala code it represents.

    Definition Classes
    Printers
  547. final val showOuterTests: Boolean(false)

    Definition Classes
    Printers
  548. def showRaw(flags: FlagSet): String

    Renders internal structure of a flag set.

    Renders internal structure of a flag set.

    Definition Classes
    Printers
  549. def showRaw(name: Name): String

    Renders internal structure of a name.

    Renders internal structure of a name.

    Definition Classes
    Printers
  550. def showRaw(any: Any, printTypes: BooleanFlag = None, printIds: BooleanFlag = None, printKinds: BooleanFlag = None, printMirrors: BooleanFlag = None): String

    Renders internal structure of a reflection artifact.

    Renders internal structure of a reflection artifact.

    Definition Classes
    Printers
  551. def singleType(pre: Type, sym: Symbol): Type

    The canonical creator for single-types

    The canonical creator for single-types

    Definition Classes
    TypesTypes
  552. def singletonBounds(hi: Type): TypeBounds

    Definition Classes
    Types
  553. var skolemizationLevel: Int

    The current skolemization level, needed for the algorithms in isSameType, isSubType that do constraint solving under a prefix.

    The current skolemization level, needed for the algorithms in isSameType, isSubType that do constraint solving under a prefix.

    Definition Classes
    Types
  554. lazy val sn: SymbolNames

    Definition Classes
    StdNames
  555. def solve(tvars: List[TypeVar], tparams: List[Symbol], variances: List[Int], upper: Boolean, depth: Int): Boolean

    Definition Classes
    Types
  556. def solve(tvars: List[TypeVar], tparams: List[Symbol], variances: List[Int], upper: Boolean): Boolean

    Solve constraint collected in types tvars.

    Solve constraint collected in types tvars.

    tvars

    All type variables to be instantiated.

    tparams

    The type parameters corresponding to tvars

    variances

    The variances of type parameters; need to reverse solution direction for all contravariant variables.

    upper

    When true search for max solution else min.

    Definition Classes
    Types
  557. def spanningTypes(ts: List[Type]): List[Type]

    A minimal type list which has a given list of types as its base type sequence

    A minimal type list which has a given list of types as its base type sequence

    Definition Classes
    Types
  558. def specializesSym(tp: Type, sym: Symbol, depth: Int): Boolean

    Definition Classes
    Types
  559. def specializesSym(tp: Type, sym: Symbol): Boolean

    Does type tp implement symbol sym with same or stronger type? Exact only if sym is a member of some refinement type, otherwise we might return false negatives.

    Does type tp implement symbol sym with same or stronger type? Exact only if sym is a member of some refinement type, otherwise we might return false negatives.

    Definition Classes
    Types
  560. final def startRun(period: Period): Period

    The period at the start of run that includes period.

    The period at the start of run that includes period.

    Definition Classes
    SymbolTable
  561. def supplementErrorMessage(msg: String): String

    Overridden when we know more about what was happening during a failure.

    Overridden when we know more about what was happening during a failure.

    Definition Classes
    SymbolTable
  562. def suspendTypeVarsInType(tp: Type): List[TypeVar]

    Make each type var in this type use its original type for comparisons instead of collecting constraints.

    Make each type var in this type use its original type for comparisons instead of collecting constraints.

    Definition Classes
    Types
  563. def symName(tree: Tree, name: Name): String

    Definition Classes
    Printers
  564. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  565. def throwableAsString(t: Throwable): String

    Definition Classes
    SymbolTable
  566. object toDeBruijn extends TypeMap

    Definition Classes
    Types
  567. def toString(): String

    Creates a String representation of this object.

    Creates a String representation of this object. The default representation is platform dependent. On the java platform it is the concatenation of the class name, "@", and the object's hashcode in hexadecimal.

    returns

    a String representation of the object.

    Definition Classes
    AnyRef → Any
  568. object tpnme extends TypeNames

    Definition Classes
    StdNames
  569. final val traceSymbolActivity: Boolean

    Dump each symbol to stdout after shutdown.

    Dump each symbol to stdout after shutdown.

    Definition Classes
    SymbolTable
  570. object traceSymbols extends TraceSymbolActivity

    Definition Classes
    SymbolTable
  571. def transformedType(tpe: Type): _609.global.Type forSome { val _609: scala.reflect.internal.transform.Erasure{val global: SymbolTable.this.type} }

    Definition Classes
    Transforms
  572. def transformedType(sym: Symbol): _610.global.Type forSome { val _610: scala.reflect.internal.transform.Erasure{val global: SymbolTable.this.type} }

    Definition Classes
    Transforms
  573. final def transposeSafe[A](ass: List[List[A]]): Option[List[List[A]]]

    Definition Classes
    Collections
  574. lazy val treeBuild: TreeGen { val global: SymbolTable.this.type }

    Definition Classes
    SymbolTableUniverse
  575. val treeCopy: TreeCopier

    Definition Classes
    Trees
  576. val treeNodeCount: View

    Definition Classes
    Trees
  577. def treeToString(tree: Tree): String

    By default trees are printed with show

    By default trees are printed with show

    Attributes
    protected
    Definition Classes
    Printers
  578. def typeArgsString(tp: Type): String

    Definition Classes
    TypeDebugging
  579. object typeDebug

    Definition Classes
    TypeDebugging
  580. def typeDepth(tp: Type): Int

    The maximum depth of type tp

    The maximum depth of type tp

    Definition Classes
    Types
  581. def typeFun(tps: List[Symbol], body: Type): Type

    A creator for a type functions, assuming the type parameters tps already have the right owner.

    A creator for a type functions, assuming the type parameters tps already have the right owner.

    Definition Classes
    Types
  582. def typeFunAnon(tps: List[Symbol], body: Type): Type

    A creator for anonymous type functions, where the symbol for the type function still needs to be created.

    A creator for anonymous type functions, where the symbol for the type function still needs to be created.

    TODO: type params of anonymous type functions, which currently can only arise from normalising type aliases, are owned by the type alias of which they are the eta-expansion higher-order subtyping expects eta-expansion of type constructors that arise from a class; here, the type params are owned by that class, but is that the right thing to do?

    Definition Classes
    Types
  583. def typeOf[T](implicit ttag: TypeTag[T]): Type

    Definition Classes
    TypeTags
  584. def typeParamsString(tp: Type): String

    Definition Classes
    TypeDebugging
  585. def typeParamsToExistentials(clazz: Symbol): List[Symbol]

    Definition Classes
    Types
  586. def typeParamsToExistentials(clazz: Symbol, tparams: List[Symbol]): List[Symbol]

    A collector that tests for existential types appearing at given variance in a type

    A collector that tests for existential types appearing at given variance in a type

    Definition Classes
    Types
  587. def typeRef(pre: Type, sym: Symbol, args: List[Type]): Type

    The canonical creator for typerefs todo: see how we can clean this up a bit

    The canonical creator for typerefs todo: see how we can clean this up a bit

    Definition Classes
    TypesTypes
  588. def typeTag[T](implicit ttag: TypeTag[T]): TypeTag[T]

    Definition Classes
    TypeTags
  589. def typeTagToManifest[T](mirror0: Any, tag: TypeTag[T])(implicit arg0: ClassTag[T]): Manifest[T]

    Definition Classes
    TagInterop
  590. def typeToString(tpe: Type): String

    Attributes
    protected
    Definition Classes
    SynchronizedTypesTypes
  591. object typeVarToOriginMap extends TypeMap

    A map to convert every occurrence of a type variable to a wildcard type.

  592. def typeVarsInType(tp: Type): List[TypeVar]

    A list of the typevars in a type.

    A list of the typevars in a type.

    Definition Classes
    Types
  593. def uncurry: UnCurry { val global: SymbolTable.this.type }

    Definition Classes
    Transforms
  594. val undetBaseTypeSeq: BaseTypeSeq

    A merker object for a base type sequence that's no yet computed.

    A merker object for a base type sequence that's no yet computed. used to catch inheritance cycles

    Definition Classes
    BaseTypeSeqs
  595. lazy val undoLog: UndoLog

    A log of type variable with their original constraints.

    A log of type variable with their original constraints. Used in order to undo constraints in the case of isSubType/isSameType failure.

    Definition Classes
    Types
  596. def unique[T <: Type](tp: T): T

    Definition Classes
    SynchronizedTypesTypes
  597. object unwrapToClass extends ClassUnwrapper

    Definition Classes
    Types
  598. object unwrapToStableClass extends ClassUnwrapper

    Definition Classes
    Types
  599. object unwrapWrapperTypes extends TypeUnwrapper

    Definition Classes
    Types
  600. def validateClassInfo(tp: ClassInfoType): Unit

    Assert that packages have package scopes

    Assert that packages have package scopes

    Definition Classes
    SymbolLoaders
  601. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  602. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  603. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws()
  604. def weakGlb(ts: List[Type]): (Type, Boolean)

    Definition Classes
    Types
  605. def weakLub(ts: List[Type]): (Type, Boolean)

    Definition Classes
    Types
  606. object wildcardToTypeVarMap extends TypeMap

    A map to convert every occurrence of a wildcard type to a fresh type variable

  607. def withTypesExplained[A](op: ⇒ A): A

    Execute op while printing a trace of the operations on types executed.

    Execute op while printing a trace of the operations on types executed.

    Definition Classes
    Types
  608. def wrappingPos(trees: List[Tree]): Position

    A position that wraps the non-empty set of trees.

    A position that wraps the non-empty set of trees. The point of the wrapping position is the point of the first trees' position. If all some the trees are non-synthetic, returns a range position enclosing the non-synthetic trees Otherwise returns a synthetic offset position to point.

    Definition Classes
    PositionsPositions
  609. def wrappingPos(default: Position, trees: List[Tree]): Position

    A position that wraps a set of trees.

    A position that wraps a set of trees. The point of the wrapping position is the point of the default position. If some of the trees are ranges, returns a range position enclosing all ranges Otherwise returns default position.

    Definition Classes
    PositionsPositions
  610. def xprintTree(treePrinter: TreePrinter, tree: Tree): Unit

    Hook for extensions

    Hook for extensions

    Definition Classes
    Printers
  611. def xtransform(transformer: Transformer, tree: Tree): Tree

    Attributes
    protected
    Definition Classes
    Trees
  612. def xtraverse(traverser: Traverser, tree: Tree): Unit

    Attributes
    protected
    Definition Classes
    Trees
  613. def [B](y: B): (SymbolTable, B)

    Implicit information
    This member is added by an implicit conversion from SymbolTable to ArrowAssoc[SymbolTable] performed by method any2ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implict Value Members

  1. val self: Any

    Implicit information
    This member is added by an implicit conversion from SymbolTable to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (symbolTable: StringAdd).self
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from SymbolTable to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (symbolTable: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def abort(): Nothing

    Definition Classes
    SymbolTable
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Give us a reason

  2. def duplicateTree(tree: Tree): Tree

    Attributes
    protected[scala]
    Definition Classes
    Trees
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Moved to tree.duplicate

  3. def polyType(params: List[Symbol], tpe: Type): Type

    A creator for type parameterizations that strips empty type parameter lists.

    A creator for type parameterizations that strips empty type parameter lists. Use this factory method to indicate the type has kind * (it's a polymorphic value) until we start tracking explicit kinds equivalent to typeFun (except that the latter requires tparams nonEmpty).

    Definition Classes
    TypesTypes
    Annotations
    @deprecated
    Deprecated

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

  4. def view(s: String): TermName

    Definition Classes
    Names
    Annotations
    @deprecated
    Deprecated

    (Since version 2.9.0)

  5. def x: SymbolTable

    Implicit information
    This member is added by an implicit conversion from SymbolTable to ArrowAssoc[SymbolTable] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (symbolTable: ArrowAssoc[SymbolTable]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  6. def x: SymbolTable

    Implicit information
    This member is added by an implicit conversion from SymbolTable to Ensuring[SymbolTable] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (symbolTable: Ensuring[SymbolTable]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

Inherited from SynchronizedOps

Inherited from SynchronizedTypes

Inherited from SynchronizedSymbols

Inherited from SymbolLoaders

Inherited from JavaMirrors

Inherited from JavaUniverse

Inherited from TagInterop

Inherited from SymbolTable

Inherited from BuildUtils

Inherited from StdCreators

Inherited from StdAttachments

Inherited from CapturedVariables

Inherited from Required

Inherited from Importers

Inherited from TypeDebugging

Inherited from Positions

Inherited from Printers

Inherited from Trees

Inherited from AnnotationCheckers

Inherited from AnnotationInfos

Inherited from StdNames

Inherited from Transforms

Inherited from InfoTransformers

Inherited from BaseTypeSeqs

Inherited from Constants

Inherited from Definitions

Inherited from Mirrors

Inherited from Scopes

Inherited from FlagSets

Inherited from ExistentialsAndSkolems

Inherited from Kinds

Inherited from Types

Inherited from Symbols

Inherited from Names

Inherited from Collections

Inherited from Universe

Inherited from Universe

Inherited from AnnotationInfos

Inherited from Exprs

Inherited from Importers

Inherited from StandardNames

Inherited from StandardDefinitions

Inherited from Mirrors

Inherited from Positions

Inherited from Constants

Inherited from Printers

Inherited from Trees

Inherited from Names

Inherited from FlagSets

Inherited from Types

Inherited from Symbols

Inherited from Universe

Inherited from Mirrors

Inherited from BuildUtils

Inherited from StandardNames

Inherited from StandardDefinitions

Inherited from StandardTypes

Inherited from TagInterop

Inherited from TypeTags

Inherited from Positions

Inherited from AnnotationInfos

Inherited from Constants

Inherited from Trees

Inherited from Names

Inherited from Scopes

Inherited from FlagSets

Inherited from Types

Inherited from Symbols

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from SymbolTable to StringAdd

Inherited by implicit conversion any2stringfmt from SymbolTable to StringFormat

Inherited by implicit conversion any2ArrowAssoc from SymbolTable to ArrowAssoc[SymbolTable]

Inherited by implicit conversion any2Ensuring from SymbolTable to Ensuring[SymbolTable]