mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-26 10:16:01 +01:00
f7e12a3a92
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
Language Features for JSON files
Notice: This extension is bundled with Visual Studio Code. It can be disabled but not uninstalled.
Features
See JSON in Visual Studio Code to learn about the features of this extension.