fix regression from 5346fb94 (shouldn't parenthesize i++ in x[i++])
This commit is contained in:
@@ -412,7 +412,7 @@ function OutputStream(options) {
|
||||
|
||||
PARENS(AST_Unary, function(output){
|
||||
var p = output.parent();
|
||||
return p instanceof AST_PropAccess;
|
||||
return p instanceof AST_PropAccess && p.expression === this;
|
||||
});
|
||||
|
||||
PARENS(AST_Seq, function(output){
|
||||
|
||||
Reference in New Issue
Block a user