Replace else with fall through

This commit is contained in:
mAAdhaTTah 2018-11-21 21:07:03 -05:00
parent 4cbd22a15f
commit 100b38784d

View File

@ -366,9 +366,8 @@ export default class ExpressionParser extends LValParser {
startLoc,
);
});
} else {
return this.parseExprOpBaseRightExpr(op, prec, noIn);
}
// falls through
default:
return this.parseExprOpBaseRightExpr(op, prec, noIn);