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 transform
    Definition Classes
    nsc
  • abstract class UnCurry extends SubComponent with InfoTransform with reflect.internal.transform.UnCurry with TypingTransformers with TreeDSL

    - uncurry all symbol and tree types (@see UnCurryPhase) -- this includes normalizing all proper types.

    - uncurry all symbol and tree types (@see UnCurryPhase) -- this includes normalizing all proper types.

    • for every curried parameter list: (ps_1) ... (ps_n) ==> (ps_1, ..., ps_n)
    • for every curried application: f(args_1)...(args_n) ==> f(args_1, ..., args_n)
    • for every type application: f[Ts] ==> f[Ts]() unless followed by parameters
    • for every use of a parameterless function: f ==> f() and q.f ==> q.f()
    • for every def-parameter: x: => T ==> x: () => T
    • for every use of a def-parameter: x ==> x.apply()
    • for every argument to a def parameter x: => T': if argument is not a reference to a def parameter: convert argument e to (expansion of) () => e'
    • for every repeated Scala parameter x: T*' --> x: Seq[T].
    • for every repeated Java parameter x: T...' --> x: Array[T], except: if T is an unbounded abstract type, replace --> x: Array[Object]
    • for every method defining repeated parameters annotated with @varargs, generate a synthetic Java-style vararg method
    • for every argument list that corresponds to a repeated Scala parameter (a_1, ..., a_n) => (Seq(a_1, ..., a_n))
    • for every argument list that corresponds to a repeated Java parameter (a_1, ..., a_n) => (Array(a_1, ..., a_n))
    • for every argument list that is an escaped sequence (a_1:_*) => (a_1) (possibly converted to sequence or array, as needed)
    • convert implicit method types to method types
    • convert non-trivial catches in try statements to matches
    • convert non-local returns to throws with enclosing try statements.
    • convert try-catch expressions in contexts where there might be values on the stack to a local method and a call to it (since an exception empties the evaluation stack):

    meth(x_1,..., try { x_i } catch { ..}, .. x_b0) ==> { def liftedTry$1 = try { x_i } catch { .. } meth(x_1, .., liftedTry$1(), .. ) }

    • remove calls to elidable methods and replace their bodies with NOPs when elide-below requires it
    Definition Classes
    transform
  • CODE
  • DesugaredParameterType
  • Phase
  • StdPhase
  • TypingTransformer
  • UnCurryTransformer
  • VarargsSymbolAttachment
c

scala.tools.nsc.transform.UnCurry

UnCurryTransformer

class UnCurryTransformer extends TypingTransformer

Source
UnCurry.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. UnCurryTransformer
  2. TypingTransformer
  3. Transformer
  4. Transformer
  5. AnyRef
  6. 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 UnCurryTransformer(unit: Global.CompilationUnit)

Value Members

  1. def atOwner[A](tree: Global.Tree, owner: Global.Symbol)(trans: ⇒ A): A
    Definition Classes
    TypingTransformer
  2. final def atOwner[A](owner: Global.Symbol)(trans: ⇒ A): A
    Definition Classes
    TypingTransformer → Transformer
  3. def isByNameRef(tree: Global.Tree): Boolean
  4. def isNonLocalReturn(ret: Global.Return): Boolean
  5. var localTyper: (analyzer)#Typer
    Definition Classes
    TypingTransformer
  6. def mainTransform(tree: Global.Tree): Global.Tree
  7. def postTransform(tree: Global.Tree): Global.Tree
  8. def transform(tree: Global.Tree): Global.Tree
    Definition Classes
    UnCurryTransformerTypingTransformer → Transformer
  9. def transformArgs(pos: Global.Position, fun: Global.Symbol, args: List[Global.Tree], formals: List[Global.Type]): List[Global.Tree]
  10. def transformCaseDefs(trees: List[Global.CaseDef]): List[Global.CaseDef]
    Definition Classes
    Transformer
  11. def transformFunction(fun: Global.Function): Global.Tree

    Transform a function node (x_1,...,x_n) => body of type FunctionN[T_1, .., T_N, R] to

    Transform a function node (x_1,...,x_n) => body of type FunctionN[T_1, .., T_N, R] to

    class $anon() extends AbstractFunctionN[T_1, .., T_N, R] with Serializable { def apply(x_1: T_1, ..., x_N: T_n): R = body } new $anon()

  12. def transformIdents(trees: List[Global.Ident]): List[Global.Ident]
    Definition Classes
    Transformer
  13. def transformMemberDefs(trees: List[Global.MemberDef]): List[Global.MemberDef]
    Definition Classes
    Transformer
  14. def transformModifiers(mods: Global.Modifiers): Global.Modifiers
    Definition Classes
    Transformer
  15. def transformStats(stats: List[Global.Tree], exprOwner: Global.Symbol): List[Global.Tree]
    Definition Classes
    Transformer
  16. def transformTemplate(tree: Global.Template): Global.Template
    Definition Classes
    Transformer
  17. def transformTrees(trees: List[Global.Tree]): List[Global.Tree]
    Definition Classes
    Transformer
  18. def transformTypeDefs(trees: List[Global.TypeDef]): List[Global.TypeDef]
    Definition Classes
    Transformer
  19. def transformUnit(unit: Global.CompilationUnit): Unit
    Definition Classes
    Transformer
  20. def transformValDef(tree: Global.ValDef): Global.ValDef
    Definition Classes
    Transformer
  21. def transformValDefs(trees: List[Global.ValDef]): List[Global.ValDef]
    Definition Classes
    Transformer
  22. def transformValDefss(treess: List[List[Global.ValDef]]): List[List[Global.ValDef]]
    Definition Classes
    Transformer
  23. val treeCopy: Global.TreeCopier
    Definition Classes
    Transformer