Packages

  • package root

    The Scala compiler and reflection APIs.

    The Scala compiler and reflection APIs.

    Definition Classes
    root
  • package scala
    Definition Classes
    root
  • package tools
    Definition Classes
    scala
  • package nsc
    Definition Classes
    tools
  • package typechecker
    Definition Classes
    nsc
  • trait MethodSynthesis extends AnyRef

    Logic related to method synthesis which involves cooperation between Namer and Typer.

    Logic related to method synthesis which involves cooperation between Namer and Typer.

    Definition Classes
    typechecker
  • trait MethodSynth extends AnyRef

    There are two key methods in here.

    There are two key methods in here.

    1) Enter methods such as enterGetterSetter are called from Namer with a tree which may generate further trees such as accessors or implicit wrappers. Some setup is performed. In general this creates symbols and enters them into the scope of the owner.

    2) addDerivedTrees is called from Typer when a Template is typed. It completes the job, returning a list of trees with their symbols set to those created in the enter methods. Those trees then become part of the typed template.

    Definition Classes
    MethodSynthesis
  • DerivedAccessor
  • Getter
  • Setter

case class Setter(tree: Global.ValDef) extends Namers.Namer.DerivedAccessor with Product with Serializable

Source
MethodSynthesis.scala
Linear Supertypes
Serializable, java.io.Serializable, Product, Equals, Namers.Namer.DerivedAccessor, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Setter
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. DerivedAccessor
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Setter(tree: Global.ValDef)

Value Members

  1. def createSym: Global.MethodSymbol
    Definition Classes
    DerivedAccessor
  2. def derivedFlags: Long
    Definition Classes
    SetterDerivedAccessor
  3. def derivedName: Global.TermName
    Definition Classes
    SetterDerivedAccessor
  4. def derivedPos: Position
    Definition Classes
    DerivedAccessor
  5. def derivedTree(derivedSym: Global.Symbol): Global.DefDef
    Definition Classes
    SetterDerivedAccessor
  6. val tree: Global.ValDef
    Definition Classes
    SetterDerivedAccessor