Make createEditorInput async (#20038)

This commit is contained in:
Charles Gagnon
2022-07-14 19:39:52 -07:00
committed by GitHub
parent ada87478a7
commit ba1f4db745
9 changed files with 25 additions and 24 deletions

View File

@@ -917,7 +917,7 @@ export class TestEditorService implements EditorServiceImpl {
revert(editors: IEditorIdentifier[], options?: IRevertOptions): Promise<boolean> { throw new Error('Method not implemented.'); }
revertAll(options?: IRevertAllEditorsOptions): Promise<boolean> { throw new Error('Method not implemented.'); }
// {{SQL CARBON EDIT}} add createEditorInput back
createEditorInput(input: IUntypedEditorInput): EditorInput { throw new Error('Method not implemented.'); }
createEditorInput(input: IUntypedEditorInput): Promise<EditorInput> { throw new Error('Method not implemented.'); }
}
export class TestFileService implements IFileService {