(leftType: string, rightType: string)
| 154 | node.childForFieldName("initializer"); |
| 155 | |
| 156 | const makeDelimitedSelector = (leftType: string, rightType: string) => |
| 157 | delimitedSelector( |
| 158 | (node) => |
| 159 | node.type === "," || node.type === leftType || node.type === rightType, |
| 160 | ", " |
| 161 | ); |
| 162 | |
| 163 | const getMapMatchers = { |
| 164 | map: cascadingMatcher( |
no test coverage detected