Skip to content

Commit f19a9e3

Browse files
committed
fix formatting. revert type assertion
1 parent 56dcf92 commit f19a9e3

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/server/editorServices.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ namespace ts.server {
4848
readonly data: ProjectInfoTelemetryEventData;
4949
}
5050

51-
/**
51+
/*
5252
* __GDPR__
5353
* "projectInfo" : {
5454
* "${include}": ["${TypeScriptCommonProperties}"],

src/server/protocol.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2883,7 +2883,7 @@ namespace ts.server.protocol {
28832883
payload: TypingsInstalledTelemetryEventPayload;
28842884
}
28852885

2886-
/**
2886+
/*
28872887
* __GDPR__
28882888
* "typingsinstalled" : {
28892889
* "${include}": ["${TypeScriptCommonProperties}"],

src/testRunner/parallel/host.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ namespace Harness.Parallel.Host {
291291
worker.accumulatedOutput += d.toString();
292292
console.log(`[Worker ${i}]`, d.toString());
293293
};
294-
worker.process.stderr.on("data", appendOutput);
295-
worker.process.stdout.on("data", appendOutput);
294+
worker.process.stderr!.on("data", appendOutput);
295+
worker.process.stdout!.on("data", appendOutput);
296296
const killChild = (timeout: TaskTimeout) => {
297297
worker.process.kill();
298298
console.error(`Worker exceeded ${timeout.duration}ms timeout ${worker.currentTasks && worker.currentTasks.length ? `while running test '${worker.currentTasks[0].file}'.` : `during test setup.`}`);

0 commit comments

Comments
 (0)