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