5 instantiations of LiteralMatcher
Microsoft.TemplateEngine.Utils (5)
Glob.cs (5)
57
matchers.Add(new
LiteralMatcher
(pattern[i + 1]));
61
matchers.Add(new
LiteralMatcher
('\\'));
67
matchers.Add(new
LiteralMatcher
('\\'));
99
matchers.Add(new
LiteralMatcher
(values));
121
matchers.Add(new
LiteralMatcher
(pattern[i]));
1 reference to LiteralMatcher
Microsoft.TemplateEngine.Utils (1)
Glob.cs (1)
21
_isNameOnlyMatch = canBeNameOnlyMatch && !_matchers.Any(x => x is PathMatcher || x is ExactPathMatcher || (x as
LiteralMatcher
)?.Char?.FirstOrDefault() == '/');