Merge branch 'master' into harmony

This commit is contained in:
Richard van Velzen
2016-08-15 09:09:04 +02:00
27 changed files with 717 additions and 51 deletions

View File

@@ -577,7 +577,7 @@ function OutputStream(options) {
PARENS([ AST_Unary, AST_Undefined ], function(output){
var p = output.parent();
return p instanceof AST_PropAccess && p.expression === this
|| p instanceof AST_New
|| p instanceof AST_Call && p.expression === this
|| p instanceof AST_Binary
&& p.operator === "**"
&& this instanceof AST_UnaryPrefix