唯然

Results 226 comments of 唯然
trafficstars

yes, but it causes ci to fail and we are not able to merge it.

moved to "ready for implement", as the rfc has been merged. :)

```js a = a || b || c; ``` for the case, it can be safely rewritten to `a ||= (b || c)`??? 😔

there is a difference: ```js a = a || b || c; // same as: a = (a || b) || c; a ||= b || c; // same as:...

I don't think it will be a breaking change - `parserOptions` & `langugeOptions` cannot co-exists.

yes, it's just a wip. will provide more info and sign the cla later.

updated the OP, and signed the CLA.🎉

> That assumes that people's tests will fail so that they realize that they need to do additional manual changes Can you give an example of a situation where a...