mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-23 08:39:54 +01:00
245265d15e
We want to prevent mistaken changes that do something like this:
```ts
foo.onEvent = () => { ... };
```
When they almost always mean:
```ts
foo.onEvent(() => { ... })
```