Fixes compile error.

This commit is contained in:
Henning Dieterichs 2021-08-03 17:10:16 +02:00
parent c6ee49032f
commit bd3ad816c1
No known key found for this signature in database
GPG key ID: 771381EFFDB9EC06

View file

@ -23,7 +23,6 @@ const fileService = new TestFileService();
export const mockUriIdentityService = new UriIdentityService(fileService);
export class MockDebugService implements IDebugService {
_serviceBrand: undefined;
get state(): State {
@ -164,6 +163,10 @@ export class MockDebugService implements IDebugService {
tryToAutoFocusStackFrame(thread: IThread): Promise<any> {
throw new Error('not implemented');
}
runTo(uri: uri, lineNumber: number, column?: number): Promise<void> {
throw new Error('Method not implemented.');
}
}
export class MockSession implements IDebugSession {