We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5ad380 commit 5523be6Copy full SHA for 5523be6
src/QRegex/NFA.nqp
@@ -161,7 +161,9 @@ class QRegex::NFA {
161
}
162
163
method pastnode($node, $from, $to) {
164
- self.addedge($from, $to, $EDGE_EPSILON, 0);
+ $node.subtype eq 'zerowidth' || $node.subtype eq 'declarative' ??
165
+ self.addedge($from, $to, $EDGE_EPSILON, 0) !!
166
+ self.fate($node, $from, $to);
167
168
169
method subcapture($node, $from, $to) {
0 commit comments