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

@@ -10,7 +10,7 @@ export const ISharedProcessService = createDecorator<ISharedProcessService>('sha
export interface ISharedProcessService {
_serviceBrand: undefined;
readonly _serviceBrand: undefined;
getChannel(channelName: string): IChannel;
registerChannel(channelName: string, channel: IServerChannel<string>): void;

View File

@@ -9,7 +9,7 @@ export const ISharedProcessMainService = createDecorator<ISharedProcessMainServi
export interface ISharedProcessMainService {
_serviceBrand: undefined;
readonly _serviceBrand: undefined;
whenSharedProcessReady(): Promise<void>;
toggleSharedProcessWindow(): Promise<void>;
@@ -22,7 +22,7 @@ export interface ISharedProcess {
export class SharedProcessMainService implements ISharedProcessMainService {
_serviceBrand: undefined;
declare readonly _serviceBrand: undefined;
constructor(private sharedProcess: ISharedProcess) { }

View File

@@ -12,7 +12,7 @@ export const IMainProcessService = createDecorator<IMainProcessService>('mainPro
export interface IMainProcessService {
_serviceBrand: undefined;
readonly _serviceBrand: undefined;
getChannel(channelName: string): IChannel;
@@ -21,7 +21,7 @@ export interface IMainProcessService {
export class MainProcessService extends Disposable implements IMainProcessService {
_serviceBrand: undefined;
declare readonly _serviceBrand: undefined;
private mainProcessConnection: Client;