tsfmt - src

This commit is contained in:
Johannes Rieken
2016-10-08 09:53:13 +02:00
parent c2c86bef86
commit 6681a2a7d6
998 changed files with 18491 additions and 18442 deletions

View File

@@ -30,8 +30,8 @@ import { TelemetryAppenderChannel } from 'vs/platform/telemetry/common/telemetry
import { TelemetryService, ITelemetryServiceConfig } from 'vs/platform/telemetry/common/telemetryService';
import { AppInsightsAppender } from 'vs/platform/telemetry/node/appInsightsAppender';
import { ISharedProcessInitData } from './sharedProcess';
import {IChoiceService} from 'vs/platform/message/common/message';
import {ChoiceChannelClient} from 'vs/platform/message/common/messageIpc';
import { IChoiceService } from 'vs/platform/message/common/message';
import { ChoiceChannelClient } from 'vs/platform/message/common/messageIpc';
import { WindowEventChannelClient } from 'vs/code/common/windowsIpc';
import { IWindowEventService, ActiveWindowManager } from 'vs/code/common/windows';
@@ -66,7 +66,7 @@ function main(server: Server, initData: ISharedProcessInitData): void {
services.set(IConfigurationService, new SyncDescriptor(ConfigurationService));
services.set(IRequestService, new SyncDescriptor(RequestService));
const windowEventService:IWindowEventService = new WindowEventChannelClient(server.getChannel('windowEvent', {
const windowEventService: IWindowEventService = new WindowEventChannelClient(server.getChannel('windowEvent', {
routeCall: (command: any, arg: any) => {
return 'main';
}