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 0a882cd commit 6fee5f6Copy full SHA for 6fee5f6
regex-automata/tests/nfa/thompson/backtrack/suite.rs
@@ -119,10 +119,6 @@ fn compiler(
119
return Err(err.into());
120
}
121
};
122
- // The backtracker doesn't support lookarounds, so skip if there are any.
123
- if re.get_nfa().lookaround_count() > 0 {
124
- return Ok(CompiledRegex::skip());
125
- }
126
let mut cache = re.create_cache();
127
Ok(CompiledRegex::compiled(move |test| -> TestResult {
128
run_test(&re, &mut cache, test)
0 commit comments