Abstract Value Members
-
def
notSupported
(feature: String, plural: Boolean = false): Nothing
-
def
translator
: Rewriter
Concrete Value Members
-
def
!=
(arg0: AnyRef): Boolean
-
def
!=
(arg0: Any): Boolean
-
def
##
(): Int
-
def
==
(arg0: AnyRef): Boolean
-
def
==
(arg0: Any): Boolean
-
lazy val
aToLA
: Rewriter
-
def
asInstanceOf
[T0]
: T0
-
def
clone
(): AnyRef
-
def
eq
(arg0: AnyRef): Boolean
-
def
equals
(arg0: Any): Boolean
-
def
finalize
(): Unit
-
def
getClass
(): java.lang.Class[_]
-
def
hashCode
(): Int
-
def
isInstanceOf
[T0]
: Boolean
-
def
ne
(arg0: AnyRef): Boolean
-
def
noPtoA
(re: RE): RE
-
def
notify
(): Unit
-
def
notifyAll
(): Unit
-
lazy val
pToA
: Rewriter
-
def
synchronized
[T0]
(arg0: ⇒ T0): T0
-
def
toString
(): String
-
def
translate
(re: RE): RE
-
val
traversal
: TraversalOrder
-
def
wait
(): Unit
-
def
wait
(arg0: Long, arg1: Int): Unit
-
def
wait
(arg0: Long): Unit
Inherited from AnyRef
Inherited from Any
Mimick atomic grouping and possessive quantifiers with capturing LookAheads.
Transforms atomic grouping and possessive quantifiers into a capturing LookAhead + immediate backreference:
(?>a)
becomes(?:(?=(a))\1)
anda++
becomes(?:(?=(a+))\1)
This permits the usage of atomic groups (and consequently, possessive quantifiers) in flavors that don't support them but do support LookAhead.
PossessiveToAtomic