Files
vscode/extensions
Matt Bierner f7e12a3a92 Use optional method calls in more places (#151634)
This replaces code like:

```ts
if (foo.bar) {
    foo.bar(cat);
}
```

with:

```ts
foo.bar?.(cat)
```

Which is more concise but has the same meaning
2022-06-09 15:04:28 -07:00
..
2022-05-30 17:42:17 +02:00
2022-05-02 11:20:10 +02:00
2022-05-02 11:20:10 +02:00
2022-04-25 21:03:41 +02:00
2022-06-07 09:37:14 -07:00
2022-05-02 11:20:10 +02:00
2022-06-07 09:37:14 -07:00
2022-05-13 10:22:33 +02:00
2022-06-03 20:08:35 +00:00
2022-06-03 20:08:35 +00:00