(x: Transformation)
| 235 | ); |
| 236 | }; |
| 237 | export const isMultiCursorTextTransformation = (x: Transformation): boolean => { |
| 238 | return (x.type === 'insertTextVSCode' && x.isMultiCursor) ?? false; |
| 239 | }; |
| 240 | |
| 241 | const getRangeFromTextTransformation = (transformation: TextTransformations): Range | undefined => { |
| 242 | switch (transformation.type) { |
no outgoing calls
no test coverage detected