| 142402 | PatternMatchKind[PatternMatchKind["camelCase"] = 3] = "camelCase"; |
| 142403 | })(PatternMatchKind = ts.PatternMatchKind || (ts.PatternMatchKind = {})); |
| 142404 | function createPatternMatch(kind, isCaseSensitive) { |
| 142405 | return { |
| 142406 | kind: kind, |
| 142407 | isCaseSensitive: isCaseSensitive |
| 142408 | }; |
| 142409 | } |
| 142410 | function createPatternMatcher(pattern) { |
| 142411 | // We'll often see the same candidate string many times when searching (For example, when |
| 142412 | // we see the name of a module that is used everywhere, or the name of an overload). As |