(text: string)
| 2602 | } |
| 2603 | |
| 2604 | restoreInputText(text: string): void { |
| 2605 | this.restoreEditor(); |
| 2606 | this.state.editor.setText(text); |
| 2607 | this.updateEditorBorderHighlight(text); |
| 2608 | this.state.ui.requestRender(); |
| 2609 | } |
| 2610 | |
| 2611 | private async runMigrationScreen(plan: MigrationPlan): Promise<MigrationScreenResult> { |
| 2612 | const result = await new Promise<MigrationScreenResult>((resolve) => { |
nothing calls this directly
no test coverage detected