This is a partial revert of #11370, updating the tests to match the [new consensus](https://github.com/babel/proposals/issues/66#issuecomment-636984546).
5 lines
70 B
JavaScript
5 lines
70 B
JavaScript
var a;
|
|
a || (a = () => {});
|
|
a && (a = () => {});
|
|
a ?? (a = () => {});
|