Merge from vscode 4d91d96e5e121b38d33508cdef17868bab255eae

This commit is contained in:
ADS Merger
2020-06-18 04:32:54 +00:00
committed by AzureDataStudio
parent a971aee5bd
commit 5e7071e466
1002 changed files with 24201 additions and 13193 deletions

View File

@@ -19,7 +19,7 @@ export interface IElement {
}
export interface IDriver {
_serviceBrand: undefined;
readonly _serviceBrand: undefined;
getWindowIds(): Promise<number[]>;
capturePage(windowId: number): Promise<string>;

View File

@@ -27,7 +27,7 @@ function isSilentKeyCode(keyCode: KeyCode) {
export class Driver implements IDriver, IWindowDriverRegistry {
_serviceBrand: undefined;
declare readonly _serviceBrand: undefined;
private registeredWindowIds = new Set<number>();
private reloadingWindowIds = new Set<number>();

View File

@@ -42,7 +42,7 @@ export class DriverChannel implements IServerChannel {
export class DriverChannelClient implements IDriver {
_serviceBrand: undefined;
declare readonly _serviceBrand: undefined;
constructor(private channel: IChannel) { }
@@ -136,7 +136,7 @@ export class WindowDriverRegistryChannel implements IServerChannel {
export class WindowDriverRegistryChannelClient implements IWindowDriverRegistry {
_serviceBrand: undefined;
declare readonly _serviceBrand: undefined;
constructor(private channel: IChannel) { }
@@ -177,7 +177,7 @@ export class WindowDriverChannel implements IServerChannel {
export class WindowDriverChannelClient implements IWindowDriver {
_serviceBrand: undefined;
declare readonly _serviceBrand: undefined;
constructor(private channel: IChannel) { }