1 instantiation of SimplePatternMatcher
Microsoft.CodeAnalysis.Workspaces (1)
PatternMatching\PatternMatcher.cs (1)
75
var standard = kind.HasFlag(PatternMatcherKind.Standard) ? new
SimplePatternMatcher
(pattern, culture, includeMatchedSpans) : null;
3 references to SimplePatternMatcher
Microsoft.CodeAnalysis.Workspaces (3)
PatternMatching\FuzzyPatternMatcher.cs (2)
16
/// camelCase, substring) — those are handled separately by <see cref="
SimplePatternMatcher
"/>.
17
/// Callers compose the two matchers: try <see cref="
SimplePatternMatcher
"/> first, then fall
PatternMatching\PatternMatcher.cs (1)
75
var
standard = kind.HasFlag(PatternMatcherKind.Standard) ? new SimplePatternMatcher(pattern, culture, includeMatchedSpans) : null;