2023-06-11 21:25:23 -04:00
|
|
|
use regex_syntax::hir::Hir;
|
2018-04-29 09:29:52 -04:00
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
2023-06-11 21:25:23 -04:00
|
|
|
pub struct LiteralSets {}
|
2018-04-29 09:29:52 -04:00
|
|
|
|
|
|
|
impl LiteralSets {
|
|
|
|
/// Create a set of literals from the given HIR expression.
|
2023-06-11 21:25:23 -04:00
|
|
|
pub fn new(_: &Hir) -> LiteralSets {
|
|
|
|
LiteralSets {}
|
2018-04-29 09:29:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/// If it is deemed advantageuous to do so (via various suspicious
|
|
|
|
/// heuristics), this will return a single regular expression pattern that
|
|
|
|
/// matches a subset of the language matched by the regular expression that
|
|
|
|
/// generated these literal sets. The idea here is that the pattern
|
|
|
|
/// returned by this method is much cheaper to search for. i.e., It is
|
|
|
|
/// usually a single literal or an alternation of literals.
|
2023-06-11 21:25:23 -04:00
|
|
|
pub fn one_regex(&self, _word: bool) -> Option<String> {
|
|
|
|
None
|
2020-04-01 20:34:39 -04:00
|
|
|
}
|
2018-04-29 09:29:52 -04:00
|
|
|
}
|