(...parentTypes: string[])
| 77 | } |
| 78 | |
| 79 | export function argumentMatcher(...parentTypes: string[]): NodeMatcher { |
| 80 | return matcher( |
| 81 | argumentNodeFinder(...parentTypes), |
| 82 | argumentSelectionExtractor() |
| 83 | ); |
| 84 | } |
| 85 | |
| 86 | export function conditionMatcher(...patterns: string[]): NodeMatcher { |
| 87 | return matcher(patternFinder(...patterns), conditionSelectionExtractor); |
no test coverage detected