com.wix.accord.transform

ExpressionDescriber

trait ExpressionDescriber[C <: Context] extends MacroHelper[C] with PatternHelper[C]

A macro helper trait that generates implicit description for expressions. The transformation operates in the context of a function of the form Function1[ T, U ], or in other words only supports single-parameter functions.

The expression is transformable via com.wix.accord.transform.ExpressionDescriber.renderDescriptionTree based on the following rules:

C

The macro context type

Linear Supertypes
PatternHelper[C], MacroHelper[C], AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ExpressionDescriber
  2. PatternHelper
  3. MacroHelper
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. implicit class ExtendType extends AnyRef

    Definition Classes
    PatternHelper
  2. type TransformAST = PartialFunction[scala.reflect.macros.Universe.Tree, scala.reflect.macros.Universe.Tree]

    Definition Classes
    PatternHelper

Abstract Value Members

  1. abstract val context: C

    The macro context (of type C), must be provided by the inheritor

    The macro context (of type C), must be provided by the inheritor

    Attributes
    protected
    Definition Classes
    MacroHelper
  2. abstract val prototype: scala.reflect.macros.Universe.ValDef

    The function prototype; specifically, the single function parameter's definition as a ValDef.

    The function prototype; specifically, the single function parameter's definition as a ValDef. Must be provided by the inheritor.

    Attributes
    protected

Concrete Value Members

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

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  5. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def collectFromPattern[R](tree: scala.reflect.macros.Universe.Tree)(pattern: PartialFunction[scala.reflect.macros.Universe.Tree, R]): List[R]

    Matches an AST pattern against a tree recursively.

    Matches an AST pattern against a tree recursively. Patterns are encoded as a partial function from scala.reflect.api.Universe.Tree to a result object; this method returns the result of applying the partial function to all AST subtrees matching it.

    R

    The return type as defined by the extraction clause of the search pattern.

    tree

    The AST tree to search.

    pattern

    The search pattern.

    returns

    scala.None if no match was found, or a scala.Some containing the result of applying the partial function to the first matching subtree.

    Definition Classes
    PatternHelper
  7. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  9. def extractFromPattern[R](tree: scala.reflect.macros.Universe.Tree)(pattern: PartialFunction[scala.reflect.macros.Universe.Tree, R]): Option[R]

    Matches an AST pattern against a tree recursively.

    Matches an AST pattern against a tree recursively. Patterns are encoded as a partial function from scala.reflect.api.Universe.Tree to a result object; this method returns the result of applying the partial function to the first AST subtree matching it.

    R

    The return type as defined by the extraction clause of the search pattern.

    tree

    The AST tree to search.

    pattern

    The search pattern.

    returns

    scala.None if no match was found, or a scala.Some containing the result of applying the partial function to the first matching subtree.

    Definition Classes
    PatternHelper
  10. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  17. def renderDescriptionTree(ouv: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree

    Renders a description tree for the specified AST.

    Renders a description tree for the specified AST.

    ouv

    The AST representing the function body part for which a description is to be rendered.

    returns

    The description, represented as a string literal.

    Attributes
    protected
  18. def resetAttrs(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree

    Definition Classes
    MacroHelper
  19. def rewriteExistentialTypes(tree: scala.reflect.macros.Universe.Tree): scala.reflect.macros.Universe.Tree

    Definition Classes
    MacroHelper
  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  21. def termName(symbol: String): scala.reflect.macros.Universe.TermName

    Definition Classes
    MacroHelper
  22. def toString(): String

    Definition Classes
    AnyRef → Any
  23. def transformByPattern(tree: scala.reflect.macros.Universe.Tree)(pattern: TransformAST): scala.reflect.macros.Universe.Tree

    Transforms an AST based on the specified pattern.

    Transforms an AST based on the specified pattern. The transformation is specified as a partial function from scala.reflect.api.Universe.Tree to a another tree, where every subtree for which the function is defined is replaced with the result of its application.

    tree

    The AST tree to search.

    pattern

    The search-and-replace pattern.

    returns

    The transformed tree.

    Definition Classes
    PatternHelper
  24. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from PatternHelper[C]

Inherited from MacroHelper[C]

Inherited from AnyRef

Inherited from Any

Ungrouped