()
| 77 | } |
| 78 | |
| 79 | export function argumentSelectionExtractor(): SelectionExtractor { |
| 80 | return delimitedSelector( |
| 81 | (node) => |
| 82 | node.type === "," || |
| 83 | node.type === "(" || |
| 84 | node.type === ")" || |
| 85 | node.type === "[" || |
| 86 | node.type === "]" || |
| 87 | node.type === "}" || |
| 88 | node.type === "{", |
| 89 | ", " |
| 90 | ); |
| 91 | } |
| 92 | |
| 93 | export function unwrapSelectionExtractor( |
| 94 | editor: TextEditor, |
no test coverage detected