Fix issue semi-colon gets inserted unnecessarily (#5749)
* Fix issue semi-colon gets inserted unnecessarily * Simplify if condition a bit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
if (true) [a, b] = [b, a];
|
||||
@@ -0,0 +1,6 @@
|
||||
if (true) {
|
||||
var _ref = [b, a];
|
||||
a = _ref[0];
|
||||
b = _ref[1];
|
||||
_ref;
|
||||
}
|
||||
Reference in New Issue
Block a user