org.kiama.rewriting

RewriterCore

trait RewriterCore extends AnyRef

Core implementation of strategy-based rewriting. Implement and construct basic strategies and rewrite rules, plus basic library combinators.

Source
RewriterCore.scala
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RewriterCore
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. object Term

    Generic term deconstruction.

  7. def all(name: String, s: ⇒ Strategy): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  8. def all(s: Strategy): Strategy

    Traversal to all children.

    Traversal to all children. Construct a strategy that applies s to all term children of the subject term. If s succeeds on all of the children, then succeed, forming a new term from the constructor of the original term and the result of s for each child. If s fails on any child, fail. If there are no children, succeed. If s succeeds on all children producing the same terms (by eq for references and by == for other values), then the overall strategy returns the subject term. This operation works on finite Rewritable, Product, Map and Traversable values, checked for in that order. Children of a Rewritable (resp. Product, collection) value are processed in the order returned by the value's deconstruct (resp. productElement, foreach) method. s is evaluated at most once.

    Annotations
    @macroImpl()
  9. def allMap[CC[V, W] <: Map[V, W]](s: Strategy, t: CC[Any, Any])(implicit cbf: CanBuildFrom[CC[Any, Any], (Any, Any), CC[Any, Any]]): Option[CC[Any, Any]]

    Implementation of all for Map values.

  10. def allProduct(s: Strategy, p: Product): Option[Any]

    Implementation of all for Product values.

  11. def allRewritable(s: Strategy, r: Rewritable): Option[Any]

    Implementation of all for Rewritable values.

  12. def allTraversable[CC[_] <: Traversable[Any]](s: Strategy, t: CC[Any])(implicit cbf: CanBuildFrom[CC[Any], Any, CC[Any]]): Option[CC[Any]]

    Implementation of all for Traversable values.

  13. def allbu(s: Strategy): Strategy

    Construct a strategy that applies s in a bottom-up fashion to all subterms at each level, stopping at a frontier where s succeeds.

    Construct a strategy that applies s in a bottom-up fashion to all subterms at each level, stopping at a frontier where s succeeds.

    Annotations
    @macroImpl()
  14. def alldownup2(s1: Strategy, s2: Strategy): Strategy

    Construct a strategy that applies s1 in a top-down, prefix fashion stopping at a frontier where s1 succeeds.

    Construct a strategy that applies s1 in a top-down, prefix fashion stopping at a frontier where s1 succeeds. s2 is applied in a bottom-up, postfix fashion to the result.

    Annotations
    @macroImpl()
  15. def alltd(s: Strategy): Strategy

    Construct a strategy that applies s in a top-down fashion, stopping at a frontier where s succeeds.

    Construct a strategy that applies s in a top-down fashion, stopping at a frontier where s succeeds.

    Annotations
    @macroImpl()
  16. def alltdfold(s1: Strategy, s2: Strategy): Strategy

    Construct a strategy that applies s1 in a top-down, prefix fashion stopping at a frontier where s1 succeeds.

    Construct a strategy that applies s1 in a top-down, prefix fashion stopping at a frontier where s1 succeeds. s2 is applied in a bottom-up, postfix fashion to the results of the recursive calls.

    Annotations
    @macroImpl()
  17. def and(s1: Strategy, s2: Strategy): Strategy

    and(s1, s2) applies s1 and s2 to the current term and succeeds if both succeed.

    and(s1, s2) applies s1 and s2 to the current term and succeeds if both succeed. s2 will always be applied, i.e., and is not a short-circuit operator

    Annotations
    @macroImpl()
  18. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  19. def attempt(s: Strategy): Strategy

    Construct a strategy that applies s, yielding the result of s if it succeeds, otherwise leave the original subject term unchanged.

    Construct a strategy that applies s, yielding the result of s if it succeeds, otherwise leave the original subject term unchanged. In Stratego library this strategy is called try.

    Annotations
    @macroImpl()
  20. def bottomup(s: Strategy): Strategy

    Construct a strategy that applies s in a bottom-up, postfix fashion to the subject term.

    Construct a strategy that applies s in a bottom-up, postfix fashion to the subject term.

    Annotations
    @macroImpl()
  21. def bottomupS(s: Strategy, stop: (⇒ Strategy) ⇒ Strategy): Strategy

    Construct a strategy that applies s in a bottom-up, postfix fashion to the subject term but stops when the strategy produced by stop succeeds.

    Construct a strategy that applies s in a bottom-up, postfix fashion to the subject term but stops when the strategy produced by stop succeeds. stop is given the whole strategy itself as its argument.

    Annotations
    @macroImpl()
  22. def breadthfirst(s: Strategy): Strategy

    Construct a strategy that applies s in breadth first order.

    Construct a strategy that applies s in breadth first order. This strategy does not apply s to the root of the subject term.

    It is called breadthfirst to follow Stratego's library, but is not really conducting a breadth-first traversal since all of the descendants of the first child of a term are visited before any of the descendants of the second child of a term.

    Annotations
    @macroImpl()
  23. def build(name: String, t: ⇒ Any): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  24. def build(t: Any): Strategy

    Construct a strategy that always succeeds, changing the subject term to the given term t.

    Construct a strategy that always succeeds, changing the subject term to the given term t. The term t is evaluated at most once.

    Annotations
    @macroImpl()
  25. def child(name: String, i: Int, s: ⇒ Strategy): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  26. def child(i: Int, s: Strategy): Strategy

    Traversal to a single child.

    Traversal to a single child. Construct a strategy that applies s to the ith child of the subject term (counting from one). If s succeeds on the ith child producing t, then succeed, forming a new term that is the same as the original term except that the ith child is now t. If s fails on the ith child or the subject term does not have an ith child, then fail. child(i, s) is equivalent to Stratego's i(s) operator. If s succeeds on the ith child producing the same term (by eq for references and by == for other values), then the overall strategy returns the subject term. This operation works for instances of Product or finite Seq values. s is evaluated at most once.

    Annotations
    @macroImpl()
  27. def childProduct(s: Strategy, i: Int, p: Product): Option[Any]

    Implementation of child for Product values.

  28. def childSeq[CC[U] <: Seq[U]](s: Strategy, i: Int, t: CC[Any])(implicit cbf: CanBuildFrom[CC[Any], Any, CC[Any]]): Option[CC[Any]]

    Implementation of child for Seq values.

  29. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  30. def congruence(name: String, ss: Strategy*): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  31. def congruence(ss: Strategy*): Strategy

    Make a strategy that applies the elements of ss pairwise to the children of the subject term, returning a new term if all of the strategies succeed, otherwise failing.

    Make a strategy that applies the elements of ss pairwise to the children of the subject term, returning a new term if all of the strategies succeed, otherwise failing. The constructor of the new term is the same as that of the original term and the children are the results of the strategies. If the length of ss is not the same as the number of children, then congruence(ss) fails. If the argument strategies succeed on children producing the same terms (by eq for references and by == for other values), then the overall strategy returns the subject term. This operation works on instances of Product values.

    Annotations
    @macroImpl()
  32. def congruenceProduct(p: Product, ss: Strategy*): Option[Any]

    Implementation of congruence for Product values.

  33. val constrcache: WeakHashMap[Class[_], Constructor[_]]

    Cache of constructors for product duplication.

    Cache of constructors for product duplication.

    Attributes
    protected
  34. def debug(name: String, msg: String, emitter: Emitter): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  35. def debug(msg: String, emitter: Emitter = new Emitter): Strategy

    A strategy that always succeeds with the subject term unchanged (i.

    A strategy that always succeeds with the subject term unchanged (i.e., this is the identity strategy) with the side-effect that the subject term is printed to the given emitter, prefixed by the string s. The emitter defaults to one that writes to standard output.

    Annotations
    @macroImpl()
  36. def doloop(s: Strategy, r: Strategy): Strategy

    Construct a strategy that applies s at least once and then repeats s while r succeeds.

    Construct a strategy that applies s at least once and then repeats s while r succeeds. This operator is called do-while in the Stratego library.

    Annotations
    @macroImpl()
  37. def downup(s1: Strategy, s2: Strategy): Strategy

    Construct a strategy that applies s1 in a top-down, prefix fashion and s2 in a bottom-up, postfix fashion to the subject term.

    Construct a strategy that applies s1 in a top-down, prefix fashion and s2 in a bottom-up, postfix fashion to the subject term.

    Annotations
    @macroImpl()
  38. def downup(s: Strategy): Strategy

    Construct a strategy that applies s in a combined top-down and bottom-up fashion (i.

    Construct a strategy that applies s in a combined top-down and bottom-up fashion (i.e., both prefix and postfix) to the subject term.

    Annotations
    @macroImpl()
  39. def downupS(s1: Strategy, s2: Strategy, stop: (⇒ Strategy) ⇒ Strategy): Strategy

    Construct a strategy that applies s1 in a top-down, prefix fashion and s2 in a bottom-up, postfix fashion to the subject term but stops when the strategy produced by stop succeeds.

    Construct a strategy that applies s1 in a top-down, prefix fashion and s2 in a bottom-up, postfix fashion to the subject term but stops when the strategy produced by stop succeeds. stop is given the whole strategy itself as its argument.

    Annotations
    @macroImpl()
  40. def downupS(s: Strategy, stop: (⇒ Strategy) ⇒ Strategy): Strategy

    Construct a strategy that applies s in a combined top-down and bottom-up fashion (i.

    Construct a strategy that applies s in a combined top-down and bottom-up fashion (i.e., both prefix and postfix) to the subject but stops when the strategy produced by stop succeeds. stop is given the whole strategy itself as its argument.

    Annotations
    @macroImpl()
  41. def dup[T <: Product](t: T, children: Array[AnyRef]): T

    General product duplication function.

    General product duplication function. Returns a product that applies the same constructor as the product t, but with the given children instead of t's children. Fails if a constructor cannot be found, there are the wrong number of new children, or if one of the new children is not of the appropriate type.

    Attributes
    protected
  42. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  44. def everywhere(s: Strategy): Strategy

    Same as everywheretd.

    Same as everywheretd.

    Annotations
    @macroImpl()
  45. def everywherebu(s: Strategy): Strategy

    Construct a strategy that applies s at all terms in a bottom-up fashion regardless of failure.

    Construct a strategy that applies s at all terms in a bottom-up fashion regardless of failure. Terms for which the strategy fails are left unchanged.

    Annotations
    @macroImpl()
  46. def everywheretd(s: Strategy): Strategy

    Construct a strategy that applies s at all terms in a top-down fashion regardless of failure.

    Construct a strategy that applies s at all terms in a top-down fashion regardless of failure. Terms for which the strategy fails are left unchanged.

    Annotations
    @macroImpl()
  47. val fail: Strategy

    A strategy that always fails.

  48. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  51. val id: Strategy

    A strategy that always succeeds.

  52. def innermost(s: Strategy): Strategy

    Construct a strategy that applies s repeatedly to the innermost (i.

    Construct a strategy that applies s repeatedly to the innermost (i.e., lowest and left-most) (sub-)term to which it applies. Stop with the current term if s doesn't apply anywhere.

    Annotations
    @macroImpl()
  53. def innermost2(s: Strategy): Strategy

    An alternative version of innermost.

    An alternative version of innermost.

    Annotations
    @macroImpl()
  54. def ior(s1: Strategy, s2: Strategy): Strategy

    ior(s1, s2) implements inclusive OR, that is, the inclusive choice of s1 and s2.

    ior(s1, s2) implements inclusive OR, that is, the inclusive choice of s1 and s2. It first tries s1. If that fails it applies s2 (just like s1 <+ s2). However, when s1 succeeds it also tries to apply s2.

    Annotations
    @macroImpl()
  55. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  56. def lastly(s: Strategy, f: Strategy): Strategy

    Applies s followed by f whether s failed or not.

    Applies s followed by f whether s failed or not. This operator is called finally in the Stratego library.

    Annotations
    @macroImpl()
  57. def leaves(s: Strategy, isleaf: Strategy, skip: (Strategy) ⇒ Strategy): Strategy

    Construct a strategy that applies to all of the leaves of the current term, using isleaf as the leaf predicate, skipping subterms for which skip when applied to the result succeeds.

    Construct a strategy that applies to all of the leaves of the current term, using isleaf as the leaf predicate, skipping subterms for which skip when applied to the result succeeds.

    Annotations
    @macroImpl()
  58. def leaves(s: Strategy, isleaf: Strategy): Strategy

    Construct a strategy that applies to all of the leaves of the current term, using isleaf as the leaf predicate.

    Construct a strategy that applies to all of the leaves of the current term, using isleaf as the leaf predicate.

    Annotations
    @macroImpl()
  59. def log(name: String, s: ⇒ Strategy, msg: String, emitter: Emitter): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  60. def log(s: Strategy, msg: String, emitter: Emitter = new Emitter): Strategy

    Create a logging strategy based on a strategy s.

    Create a logging strategy based on a strategy s. The returned strategy succeeds or fails exactly as s does, but also prints the provided message, the subject term, the success or failure status, and on success, the result term, to the provided emitter (default: standard output). s is evaluated at most once.

    Annotations
    @macroImpl()
  61. def logfail[T](name: String, s: ⇒ Strategy, msg: String, emitter: Emitter): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  62. def logfail[T](s: Strategy, msg: String, emitter: Emitter = new Emitter): Strategy

    Create a logging strategy based on a strategy s.

    Create a logging strategy based on a strategy s. The returned strategy succeeds or fails exactly as s does, but if s fails, also prints the provided message and the subject term to the provided emitter (default: standard output). s is evaluated at most once.

    Annotations
    @macroImpl()
  63. def loop(r: Strategy, s: Strategy): Strategy

    Construct a strategy that while r succeeds applies s.

    Construct a strategy that while r succeeds applies s. This operator is called while in the Stratego library.

    Annotations
    @macroImpl()
  64. def loopiter(s: (Int) ⇒ Strategy, low: Int, high: Int): Strategy

    Construct a strategy that applies s(i) for each integer i from low to high (inclusive).

    Construct a strategy that applies s(i) for each integer i from low to high (inclusive). This operator is called for in the Stratego library.

    Annotations
    @macroImpl()
  65. def loopiter(i: Strategy, r: Strategy, s: Strategy): Strategy

    Construct a strategy that repeats application of s while r fails, after initialization with i.

    Construct a strategy that repeats application of s while r fails, after initialization with i. This operator is called for in the Stratego library.

    Annotations
    @macroImpl()
  66. def loopnot(r: Strategy, s: Strategy): Strategy

    Construct a strategy that while r does not succeed applies s.

    Construct a strategy that while r does not succeed applies s. This operator is called while-not in the Stratego library.

    Annotations
    @macroImpl()
  67. def makechild(c: Any): AnyRef

    Make an arbitrary value c into a term child, checking that it worked properly.

    Make an arbitrary value c into a term child, checking that it worked properly. Object references will be returned unchanged; other values will be boxed.

    Attributes
    protected
  68. def manybu(s: Strategy): Strategy

    Construct a strategy that applies s as many times as possible, but at least once, in bottom up order.

    Construct a strategy that applies s as many times as possible, but at least once, in bottom up order.

    Annotations
    @macroImpl()
  69. def manytd(s: Strategy): Strategy

    Construct a strategy that applies s as many times as possible, but at least once, in top down order.

    Construct a strategy that applies s as many times as possible, but at least once, in top down order.

    Annotations
    @macroImpl()
  70. def map(s: Strategy): Strategy

    Construct a strategy that applies s to each element of a list, returning a new list of the results if all of the applications succeed, otherwise fail.

    Construct a strategy that applies s to each element of a list, returning a new list of the results if all of the applications succeed, otherwise fail. If all of the applications succeed without change, return the input list.

    Annotations
    @macroImpl()
  71. def memo(name: String, s: ⇒ Strategy): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  72. def memo(s: Strategy): Strategy

    Return a strategy that behaves as s does, but memoises its arguments and results.

    Return a strategy that behaves as s does, but memoises its arguments and results. In other words, if memo(s) is called on a term t twice, the second time will return the same result as the first, without having to invoke s. For best results, it is important that s should have no side effects. s is evaluated at most once.

    Annotations
    @macroImpl()
  73. def mkStrategy(name: String, f: (Any) ⇒ Option[Any]): Strategy

    Make a strategy with the given name and body f.

    Make a strategy with the given name and body f. By default, make a basic strategy.

  74. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  75. def not(s: Strategy): Strategy

    Construct a strategy that applies s, then fails if s succeeded or, if s failed, succeeds with the subject term unchanged, I.

    Construct a strategy that applies s, then fails if s succeeded or, if s failed, succeeds with the subject term unchanged, I.e., it tests if s applies, but has no effect on the subject term.

    Annotations
    @macroImpl()
  76. final def notify(): Unit

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

    Definition Classes
    AnyRef
  78. def oncebu(s: Strategy): Strategy

    Construct a strategy that applies s in a bottom-up fashion to one subterm at each level, stopping as soon as it succeeds once (at any level).

    Construct a strategy that applies s in a bottom-up fashion to one subterm at each level, stopping as soon as it succeeds once (at any level).

    Annotations
    @macroImpl()
  79. def oncetd(s: Strategy): Strategy

    Construct a strategy that applies s in a top-down fashion to one subterm at each level, stopping as soon as it succeeds once (at any level).

    Construct a strategy that applies s in a top-down fashion to one subterm at each level, stopping as soon as it succeeds once (at any level).

    Annotations
    @macroImpl()
  80. def one(name: String, s: ⇒ Strategy): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  81. def one(s: Strategy): Strategy

    Traversal to one child.

    Traversal to one child. Construct a strategy that applies s to the term children of the subject term. Assume that c is the first child on which s succeeds. Then stop applying s to the children and succeed, forming a new term from the constructor of the original term and the original children, except that c is replaced by the result of applying s to c. In the event that the strategy fails on all children, then fail. If there are no children, fail. If s succeeds on the one child producing the same term (by eq for references and by == for other values), then the overall strategy returns the subject term. This operation works on instances of finite Rewritable, Product, Map and Traversable values, checked for in that order. Children of a Rewritable (resp. Product, collection) value are processed in the order returned by the value's deconstruct (resp. productElement, foreach) method. s is evaluated at most once.

    Annotations
    @macroImpl()
  82. def oneMap[CC[V, W] <: Map[V, W]](s: Strategy, t: CC[Any, Any])(implicit cbf: CanBuildFrom[CC[Any, Any], (Any, Any), CC[Any, Any]]): Option[CC[Any, Any]]

    Implementation of one for Map values.

  83. def oneProduct(s: Strategy, p: Product): Option[Any]

    Implementation of one for Product values.

  84. def oneRewritable(s: Strategy, r: Rewritable): Option[Any]

    Implementation of one for Rewritable values.

  85. def oneTraversable[CC[U] <: Traversable[U]](s: Strategy, t: CC[Any])(implicit cbf: CanBuildFrom[CC[Any], Any, CC[Any]]): Option[CC[Any]]

    Implementation of one for Traversable values.

  86. def option(name: String, o: ⇒ Option[Any]): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  87. def option(o: Option[Any]): Strategy

    Construct a strategy from an option value o.

    Construct a strategy from an option value o. The strategy succeeds or fails depending on whether o is a Some or None, respectively. If o is a Some, then the subject term is changed to the term that is wrapped by the Some. o is evaluated at most once.

    Annotations
    @macroImpl()
  88. def or(s1: Strategy, s2: Strategy): Strategy

    or(s1, s2) is similar to ior(s1, s2), but the application of the strategies is only tested.

    or(s1, s2) is similar to ior(s1, s2), but the application of the strategies is only tested.

    Annotations
    @macroImpl()
  89. def outermost(s: Strategy): Strategy

    Construct a strategy that applies s repeatedly in a top-down fashion stopping each time as soon as it succeeds once (at any level).

    Construct a strategy that applies s repeatedly in a top-down fashion stopping each time as soon as it succeeds once (at any level). The outermost fails when s fails to apply to any (sub-)term.

    Annotations
    @macroImpl()
  90. def para[T](f: (Any, Seq[T]) ⇒ T): (Any) ⇒ T

    Perform a paramorphism over a value.

    Perform a paramorphism over a value. This is a fold in which the recursive step may refer to the recursive component of the value and the results of folding over the children. When the function f is called, the first parameter is the value and the second is a sequence of the values that f has returned for the children. his will work on any value, but will only decompose values that are supported by the Term generic term deconstruction. This operation is similar to that used in the Uniplate library.

  91. def query[T](name: String, f: ==>[Any, T]): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  92. def query[T](f: ==>[Any, T]): Strategy

    Define a term query by a partial function f.

    Define a term query by a partial function f. The query always succeeds with no effect on the subject term but applies the given partial function f to the subject term. In other words, the strategy runs f for its side-effects.

    Annotations
    @macroImpl()
  93. def queryf[T](name: String, f: (Any) ⇒ T): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  94. def queryf[T](f: (Any) ⇒ T): Strategy

    Define a term query by a function f.

    Define a term query by a function f. The query always succeeds with no effect on the subject term but applies the given (possibly partial) function f to the subject term. In other words, the strategy runs f for its side-effects.

    Annotations
    @macroImpl()
  95. def reduce(s: Strategy): Strategy

    Construct a strategy that applies s repeatedly to subterms until it fails on all of them.

    Construct a strategy that applies s repeatedly to subterms until it fails on all of them.

    Annotations
    @macroImpl()
  96. def repeat(s: Strategy, n: Int): Strategy

    Construct a strategy that applies s repeatedly exactly n times.

    Construct a strategy that applies s repeatedly exactly n times. If s fails at some point during the n applications, the entire strategy fails. The result of the strategy is that of the nth application of s.

    Annotations
    @macroImpl()
  97. def repeat(s: Strategy, r: Strategy): Strategy

    Construct a strategy that repeatedly applies s until it fails and then terminates with application of r.

    Construct a strategy that repeatedly applies s until it fails and then terminates with application of r.

    Annotations
    @macroImpl()
  98. def repeat(s: Strategy): Strategy

    Construct a strategy that applies s repeatedly until it fails.

    Construct a strategy that applies s repeatedly until it fails.

    Annotations
    @macroImpl()
  99. def repeat1(s: Strategy, r: Strategy): Strategy

    Construct a strategy that repeatedly applies s (at least once) and terminates with application of c.

    Construct a strategy that repeatedly applies s (at least once) and terminates with application of c.

    Annotations
    @macroImpl()
  100. def repeat1(s: Strategy): Strategy

    Construct a strategy that repeatedly applies s (at least once).

    Construct a strategy that repeatedly applies s (at least once).

    Annotations
    @macroImpl()
  101. def repeatuntil(s: Strategy, r: Strategy): Strategy

    Construct a strategy that repeatedly applies s until c succeeds.

    Construct a strategy that repeatedly applies s until c succeeds.

    Annotations
    @macroImpl()
  102. def restore(s: Strategy, rest: Strategy): Strategy

    Construct a strategy that applies s, then applies the restoring action rest if s fails (and then fail).

    Construct a strategy that applies s, then applies the restoring action rest if s fails (and then fail). Otherwise, let the result of s stand. Typically useful if s performs side effects that should be restored or undone when s fails.

    Annotations
    @macroImpl()
  103. def restorealways(s: Strategy, rest: Strategy): Strategy

    Construct a strategy that applies s, then applies the restoring action rest regardless of the success or failure of s.

    Construct a strategy that applies s, then applies the restoring action rest regardless of the success or failure of s. The whole strategy preserves the success or failure of s. Typically useful if s performs side effects that should be restored always, e.g., when maintaining scope information.

    Annotations
    @macroImpl()
  104. def rule(name: String, f: ==>[Any, Any]): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  105. def rule(f: ==>[Any, Any]): Strategy

    Define a rewrite rule using a partial function f.

    Define a rewrite rule using a partial function f. If the function is defined at the current term, then the strategy succeeds with the return value of the function applied to the current term. Otherwise the strategy fails.

    Annotations
    @macroImpl()
  106. def rulef(name: String, f: (Any) ⇒ Any): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  107. def rulef(f: (Any) ⇒ Any): Strategy

    Define a rewrite rule using a function f that returns a term.

    Define a rewrite rule using a function f that returns a term. The rule always succeeds with the return value of the function.

    Annotations
    @macroImpl()
  108. def rulefs(name: String, f: ==>[Any, Strategy]): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  109. def rulefs(f: ==>[Any, Strategy]): Strategy

    Define a rewrite rule using a function f that returns a strategy.

    Define a rewrite rule using a function f that returns a strategy. The rule applies the function to the subject term to get a strategy which is then applied again to the subject term. In other words, the function is only used for effects such as pattern matching. The whole thing also fails if f is not defined at the term in the first place.

    Annotations
    @macroImpl()
  110. def same(v1: Any, v2: Any): Boolean

    Compare two arbitrary values.

    Compare two arbitrary values. If they are both references, use reference equality, otherwise throw an error since we should be able to cast anything to reference.

    Attributes
    protected
  111. def some(name: String, s: ⇒ Strategy): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  112. def some(s: Strategy): Strategy

    Traversal to as many children as possible, but at least one.

    Traversal to as many children as possible, but at least one. Construct a strategy that applies s to the term children of the subject term. If s succeeds on any of the children, then succeed, forming a new term from the constructor of the original term and the result of s for each succeeding child, with other children unchanged. In the event that the strategy fails on all children, then fail. If there are no children, fail. If s succeeds on children producing the same terms (by eq for references and by == for other values), then the overall strategy returns the subject term. This operation works on instances of finite Rewritable, Product, Map and Traversable values, checked for in that order. Children of a Rewritable (resp. Product, collection) value are processed in the order returned by the value's deconstruct (resp. productElement, foreach) method. s is evaluated at most once.

    Annotations
    @macroImpl()
  113. def someMap[CC[V, W] <: Map[V, W]](s: Strategy, t: CC[Any, Any])(implicit cbf: CanBuildFrom[CC[Any, Any], (Any, Any), CC[Any, Any]]): Option[CC[Any, Any]]

    Implementation of some for Map values.

  114. def someProduct(s: Strategy, p: Product): Option[Any]

    Implementation of some for Product values.

  115. def someRewritable(s: Strategy, r: Rewritable): Option[Any]

    Implementation of some for Rewritable values.

  116. def someTraversable[CC[U] <: Traversable[U]](s: Strategy, t: CC[Any])(implicit cbf: CanBuildFrom[CC[Any], Any, CC[Any]]): Option[CC[Any]]

    Implementation of some for Traversable values.

  117. def somebu(s: Strategy): Strategy

    Construct a strategy that applies s in a bottom-up fashion to some subterms at each level, stopping as soon as it succeeds once (at any level).

    Construct a strategy that applies s in a bottom-up fashion to some subterms at each level, stopping as soon as it succeeds once (at any level).

    Annotations
    @macroImpl()
  118. def somedownup(s: Strategy): Strategy

    Construct a strategy that applies s in a top-down, prefix fashion stopping at a frontier where s succeeds on some children.

    Construct a strategy that applies s in a top-down, prefix fashion stopping at a frontier where s succeeds on some children. s is then applied in a bottom-up, postfix fashion to the result.

    Annotations
    @macroImpl()
  119. def sometd(s: Strategy): Strategy

    Construct a strategy that applies s in a top-down fashion to some subterms at each level, stopping as soon as it succeeds once (at any level).

    Construct a strategy that applies s in a top-down fashion to some subterms at each level, stopping as soon as it succeeds once (at any level).

    Annotations
    @macroImpl()
  120. def strategy(name: String, f: ==>[Any, Option[Any]]): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  121. def strategy(f: ==>[Any, Option[Any]]): Strategy

    Make a strategy from a partial function f.

    Make a strategy from a partial function f. If the function is defined at the current term, then the function return value when applied to the current term determines whether the strategy succeeds or fails. If the function is not defined at the current term, the strategy fails.

    Annotations
    @macroImpl()
  122. def strategyf(name: String, f: (Any) ⇒ Option[Any]): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  123. def strategyf(f: (Any) ⇒ Option[Any]): Strategy

    Make a strategy from a function f.

    Make a strategy from a function f. The function return value determines whether the strategy succeeds or fails.

    Annotations
    @macroImpl()
  124. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  125. def term(name: String, t: Any): Strategy

    As for the version without the name argument but specifies the name for the constructed strategy.

  126. def term(t: Any): Strategy

    Construct a strategy that succeeds only if the subject term matches the given term t.

    Construct a strategy that succeeds only if the subject term matches the given term t.

    Annotations
    @macroImpl()
  127. def test(s: Strategy): Strategy

    Construct a strategy that tests whether strategy s succeeds, restoring the original term on success.

    Construct a strategy that tests whether strategy s succeeds, restoring the original term on success. A synonym for where.

    Annotations
    @macroImpl()
  128. def toString(): String

    Definition Classes
    AnyRef → Any
  129. def topdown(s: Strategy): Strategy

    Construct a strategy that applies s in a top-down, prefix fashion to the subject term.

    Construct a strategy that applies s in a top-down, prefix fashion to the subject term.

    Annotations
    @macroImpl()
  130. def topdownS(s: Strategy, stop: (⇒ Strategy) ⇒ Strategy): Strategy

    Construct a strategy that applies s in a top-down, prefix fashion to the subject term but stops when the strategy produced by stop succeeds.

    Construct a strategy that applies s in a top-down, prefix fashion to the subject term but stops when the strategy produced by stop succeeds. stop is given the whole strategy itself as its argument.

    Annotations
    @macroImpl()
  131. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  134. def where(s: Strategy): Strategy

    Construct a strategy that tests whether strategy s succeeds, restoring the original term on success.

    Construct a strategy that tests whether strategy s succeeds, restoring the original term on success. This is similar to Stratego's where, except that in this version any effects on bindings are not visible outside s.

    Annotations
    @macroImpl()

Inherited from AnyRef

Inherited from Any

Ungrouped