(position: PositionPlainObject)
| 24 | import getRecordedTestPaths from "./getRecordedTestPaths"; |
| 25 | |
| 26 | function createPosition(position: PositionPlainObject) { |
| 27 | return new vscode.Position(position.line, position.character); |
| 28 | } |
| 29 | |
| 30 | function createSelection(selection: SelectionPlainObject): vscode.Selection { |
| 31 | const active = createPosition(selection.active); |