-
Matt Bierner создал
We want to prevent mistaken changes that do something like this: ```ts foo.onEvent = () => { ... }; ``` When they almost always mean: ```ts foo.onEvent(() => { ... }) ```245265d1
We want to prevent mistaken changes that do something like this:
```ts
foo.onEvent = () => { ... };
```
When they almost always mean:
```ts
foo.onEvent(() => { ... })
```