Trait

com.wix.accord.transform

PatternHelper

Related Doc: package transform

Permalink

trait PatternHelper[C <: Context] extends AnyRef

A macro helper mixin that provides simplified, pattern-based AST operations.

C

The type of the macro context

Self Type
PatternHelper[C] with MacroHelper[C]
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PatternHelper
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. implicit class ExtendType extends AnyRef

    Permalink
  2. type TransformAST = PartialFunction[scala.reflect.macros.Universe.Tree, scala.reflect.macros.Universe.Tree]

    Permalink

Value Members

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

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

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

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

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    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]

    Permalink

    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.

  7. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink

    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.

  10. def finalize(): Unit

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  18. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  19. def transformByPattern(tree: scala.reflect.macros.Universe.Tree)(pattern: (PatternHelper.this)#TransformAST): scala.reflect.macros.Universe.Tree

    Permalink

    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.

  20. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped