1 write to _matchers
Microsoft.TemplateEngine.Utils (1)
Glob.cs (1)
20_matchers = matchers;
7 references to _matchers
Microsoft.TemplateEngine.Utils (7)
Glob.cs (7)
21_isNameOnlyMatch = canBeNameOnlyMatch && !_matchers.Any(x => x is PathMatcher || x is ExactPathMatcher || (x as LiteralMatcher)?.Char?.FirstOrDefault() == '/'); 149IMatcher matcher = _matchers[currentMatcher]; 154if ((currentMatcher < _matchers.Count - 1 && matcher.ProducesCheckpoint && matcher.MinConsume == 0) || matcher.CanConsume(test, i, out i)) 158if (currentMatcher < _matchers.Count - 1 && matcher.ProducesCheckpoint) 165if (currentMatcher < _matchers.Count) 181if (currentMatcher == _matchers.Count && i == test.Length) 212return i == test.Length && currentMatcher == _matchers.Count;