Lookaround
weaponregex.model.regextree.Lookaround
case class Lookaround(expr: RegexTree, isPositive: Boolean, isLookahead: Boolean, location: Location) extends Node
The umbrella node for positive/negative lookahead/lookbehind
Attributes
- expr
The regex inside the lookaround
- isLookahead
trueif this is a lookahead,falseif this is a lookbehind- isPositive
trueif the lookaround is positive,falseotherwise- location
The weaponregex.model.Location of the node in the regex string
- Graph
- Supertypes