summaryrefslogtreecommitdiffstats
path: root/vendor/gix-attributes/src/parse/ignore.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix-attributes/src/parse/ignore.rs')
-rw-r--r--vendor/gix-attributes/src/parse/ignore.rs36
1 files changed, 0 insertions, 36 deletions
diff --git a/vendor/gix-attributes/src/parse/ignore.rs b/vendor/gix-attributes/src/parse/ignore.rs
deleted file mode 100644
index a27ee0285..000000000
--- a/vendor/gix-attributes/src/parse/ignore.rs
+++ /dev/null
@@ -1,36 +0,0 @@
-use bstr::ByteSlice;
-
-/// An iterator over line-wise ignore patterns parsed from a buffer.
-pub struct Lines<'a> {
- lines: bstr::Lines<'a>,
- line_no: usize,
-}
-
-impl<'a> Lines<'a> {
- /// Create a new instance from `buf` to parse ignore patterns from.
- pub fn new(buf: &'a [u8]) -> Self {
- let bom = unicode_bom::Bom::from(buf);
- Lines {
- lines: buf[bom.len()..].lines(),
- line_no: 0,
- }
- }
-}
-
-impl<'a> Iterator for Lines<'a> {
- type Item = (gix_glob::Pattern, usize);
-
- fn next(&mut self) -> Option<Self::Item> {
- for line in self.lines.by_ref() {
- self.line_no += 1;
- if line.first() == Some(&b'#') {
- continue;
- }
- match gix_glob::Pattern::from_bytes(line) {
- None => continue,
- Some(pattern) => return Some((pattern, self.line_no)),
- }
- }
- None
- }
-}