(...patterns: string[])
| 73 | } |
| 74 | |
| 75 | export function patternMatcher(...patterns: string[]): NodeMatcher { |
| 76 | return matcher(patternFinder(...patterns)); |
| 77 | } |
| 78 | |
| 79 | export function argumentMatcher(...parentTypes: string[]): NodeMatcher { |
| 80 | return matcher( |
no test coverage detected