@@ -799,6 +799,10 @@ function OutputStream(options) {
|
||||
// a = yield 3
|
||||
if (p instanceof AST_Binary && p.operator !== "=")
|
||||
return true;
|
||||
// (yield 1)()
|
||||
// new (yield 1)()
|
||||
if (p instanceof AST_Call && p.expression === this)
|
||||
return true;
|
||||
// (yield 1) ? yield 2 : yield 3
|
||||
if (p instanceof AST_Conditional && p.condition === this)
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user