Commit Graph

10 Commits

Author SHA1 Message Date
Johannes Rieken
f6a8e3a56e joh/eastern slug (#190250)
* more explicit error handling/logging when post messages fails

https://github.com/microsoft/vscode/issues/188347

* print the worker name that fails to send message
2023-08-11 06:06:05 -07:00
Alexandru Dima
828118d55e Allow embedders to intercept trustedTypes.createPolicy calls (#184093) 2023-06-01 15:20:10 -07:00
Alexandru Dima
f7ba39b04e Adopt globalThis (#175381) 2023-02-24 21:33:25 +01:00
Johannes Rieken
212bb1a254 compute performance baseline in a webworker (#172405)
* compute performance baseline in a webworker

https://github.com/microsoft/vscode/issues/172239

* make build happy, better change overall
2023-01-26 11:44:55 +01:00
Johannes Rieken
eb99a782ff fix https://github.com/microsoft/vscode/issues/161394 (#162213) 2022-09-28 08:58:15 -07:00
Johannes
2aeb99b11d extract some COI handle into network-util, add --enable-coi command line flag and adopt in main handler 2022-09-02 12:21:10 +02:00
Matt Bierner
f17b33faf2 Use .?method() in more places (#152112)
Switches simple patterns like:

```ts
if (some.thing) {
    some.thing.method();
}
```

to:

```ts
some.thing?.method()
```

This is more concise and avoids having to repeat the `some.thing` part
2022-06-15 16:28:31 +00:00
Johannes
0656d21d11 auto-fixed prefer-const violation 2022-06-08 17:49:21 +02:00
Alex Dima
23aa7ad51c Fixes #140891: Repair worker url computation caused by moving defaultWorkerFactory.ts out of vs/base/worker 2022-01-18 10:29:25 +01:00
Alex Dima
d018132104 Move defaultWorkerFactory.ts to /browser/ (#140857) 2022-01-17 17:23:31 +01:00