committed by
Alex Lam S.L
parent
4bd31607f6
commit
85c1cba760
@@ -687,10 +687,8 @@ function OutputStream(options) {
|
||||
if (p instanceof AST_Unary)
|
||||
return true;
|
||||
// (yield x).foo
|
||||
if (p instanceof AST_Dot && p.expression === this)
|
||||
return true;
|
||||
// (yield x)['foo']
|
||||
if (p instanceof AST_Sub && p.expression === this)
|
||||
if (p instanceof AST_PropAccess && p.expression === this)
|
||||
return true;
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user