blob: eb79147fc6212b3caf9c6ab121f5e7c74b411ae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! ref: composer/vendor/symfony/finder/Glob.php
#[derive(Debug)]
pub struct Glob;
impl Glob {
pub fn to_regex(
_glob: &str,
_strict_leading_dot: bool,
_strict_wildcard_slash: bool,
) -> String {
todo!()
}
}
|