rust/hg-core/src/filepatterns.rs
changeset 42841 ce6797ef6eab
parent 42751 4b3b27d567d5
child 42863 62eabdf91f85
equal deleted inserted replaced
42840:b1b984f9c01d 42841:ce6797ef6eab
    36 #[derive(Debug, Copy, Clone, PartialEq, Eq)]
    36 #[derive(Debug, Copy, Clone, PartialEq, Eq)]
    37 pub enum PatternSyntax {
    37 pub enum PatternSyntax {
    38     Regexp,
    38     Regexp,
    39     /// Glob that matches at the front of the path
    39     /// Glob that matches at the front of the path
    40     RootGlob,
    40     RootGlob,
    41     /// Glob that matches at any suffix of the path (still anchored at slashes)
    41     /// Glob that matches at any suffix of the path (still anchored at
       
    42     /// slashes)
    42     Glob,
    43     Glob,
    43     Path,
    44     Path,
    44     RelPath,
    45     RelPath,
    45     RelGlob,
    46     RelGlob,
    46     RelRegexp,
    47     RelRegexp,