(...patterns: string[])
| 84 | } |
| 85 | |
| 86 | export function conditionMatcher(...patterns: string[]): NodeMatcher { |
| 87 | return matcher(patternFinder(...patterns), conditionSelectionExtractor); |
| 88 | } |
| 89 | /** |
| 90 | * Given `patterns`, creates a node matcher that selects the named child |
| 91 | * at the specified index of the pattern matched node. |
no test coverage detected