remove extraneous ! before AST_Arrow (#2185)

This commit is contained in:
Alex Lam S.L
2017-06-30 11:17:58 +08:00
committed by GitHub
parent a938fe5e1f
commit 52cc21d999
2 changed files with 8 additions and 8 deletions

View File

@@ -312,7 +312,7 @@ issue_2105_1: {
});
}
expect: {
!void (() => {
void (() => {
var quux = () => {
console.log("PASS");
};
@@ -357,7 +357,7 @@ issue_2105_2: {
});
}
expect: {
!void (() => {
void (() => {
var quux = () => {
console.log("PASS");
};
@@ -528,7 +528,7 @@ issue_2084: {
}
expect: {
var c = 0;
!((c) => {
((c) => {
c = 1 + c,
c = 1 + (c = 0),
0 !== 23..toString() && (c = 1 + c);